adds animation

pull/310/head
cagataycivici 2020-04-30 00:54:21 +03:00
parent 2230feb755
commit 91b7809018
2 changed files with 18 additions and 0 deletions

View File

@ -10,3 +10,12 @@
justify-content: center;
align-items: center;
}
.p-checkbox-icon {
transform: scale(0);
transition-property: transform;
}
.p-checkbox-box.p-highlight .p-checkbox-icon {
transform: scale(1);
}

View File

@ -10,3 +10,12 @@
justify-content: center;
align-items: center;
}
.p-radiobutton-icon {
transform: scale(0);
transition-property: transform;
}
.p-radiobutton-box.p-highlight .p-radiobutton-icon {
transform: scale(1);
}