TelegramPWA/src/components/ui/FloatingActionButton.scss
Alexander Zinchuk 3afcde3217 Initial commit
2021-04-09 14:11:51 +03:00

16 lines
291 B
SCSS

.FloatingActionButton {
position: absolute;
right: 1rem;
bottom: 1rem;
transform: translateY(5rem);
transition: transform .25s cubic-bezier(0.34, 1.56, 0.64, 1);
body.animation-level-0 & {
transition: none !important;
}
&.revealed {
transform: translateY(0);
}
}