1
0
mirror of synced 2025-12-23 11:54:18 -05:00
Files
docs/stylesheets/scroll-button.scss
2021-04-23 10:23:26 -04:00

21 lines
366 B
SCSS

button.arrow-for-scrolling-top {
opacity: 0;
transition: 0.2s;
background-color: var(--color-auto-blue-5);
color: var(--color-text-inverse);
position: fixed;
bottom: 10px;
right: 60px;
display: block;
width: 40px;
height: 40px;
border-radius: 50%;
margin-right: 10px;
&.show {
opacity: 1;
border: none;
transition: 0.2s;
}
}