сделал анимацию aside

This commit is contained in:
Kirill Pet
2024-10-08 21:08:03 +03:00
parent 46df883cfd
commit 284a32c6c9
3 changed files with 53 additions and 45 deletions

View File

@@ -801,6 +801,8 @@ button{
opacity: 0;
transition: opacity .2s ease-out;
pointer-events: none;
white-space: nowrap;
}
.modal.active{
opacity: 1;
@@ -827,6 +829,9 @@ button{
position: relative;
display: none;
filter: blur(10px);
transition: filter .2s ease-out;
}
.modal__item.active{
display: flex;
@@ -1125,3 +1130,14 @@ button{
color: var(--text-dark);
}
/* radio */
@keyframes slidein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}