* Add color mode selector in footer * Interpret color mode from cookie * Update render-page.js * Delete color-mode.js * Update render-page.js * Make this more resilient to HTML tag changes * Update scroll-button.scss
21 lines
381 B
SCSS
21 lines
381 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: $spacer-2;
|
|
right: $spacer-2;
|
|
display: block;
|
|
width: 40px;
|
|
height: 40px;
|
|
border-radius: 50%;
|
|
margin-right: $spacer-1;
|
|
|
|
&.show {
|
|
opacity: 1;
|
|
border: none;
|
|
transition: 0.2s;
|
|
}
|
|
}
|