HM-74. Добавлена модалка-сайдбар. Реализована модалка для просмотра логов. (#32)
This commit is contained in:
19
src/components/modal-sidebar/ModalSidebarAnimation.css
Normal file
19
src/components/modal-sidebar/ModalSidebarAnimation.css
Normal file
@ -0,0 +1,19 @@
|
||||
@keyframes ModalSidebarShow {
|
||||
from {
|
||||
right: -100%;
|
||||
}
|
||||
|
||||
to {
|
||||
right: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes ModalSidebarHide {
|
||||
from {
|
||||
right: 0;
|
||||
}
|
||||
|
||||
to {
|
||||
right: -100%;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user