1
0
mirror of synced 2026-01-06 15:01:04 -05:00
Files
docs/stylesheets/scroll-button.scss
2021-02-11 23:41:38 +09:00

19 lines
339 B
SCSS

button.arrow-for-scrolling-top {
opacity: 0;
transition: 1s;
background-color: #0367d6;
color: #fff;
position: fixed;
bottom: 10px;
right: 10px;
display: block;
width: 40px;
height: 40px;
border-radius: 50%;
&.show {
opacity: 1;
border: none;
transition: 1s;
}
}