16 lines
291 B
SCSS
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);
|
|
}
|
|
}
|