21 lines
366 B
SCSS
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;
|
|
}
|
|
}
|