Files
landing_page/qdrant-landing/themes/qdrant-2024/assets/css/partials/_go-to-top-button.scss
T
trean 58f04a6781 Go to top button (#975)
* go to top button

* refactoring
2024-06-17 18:03:07 +02:00

19 lines
379 B
SCSS

.go-to-top-button {
position: fixed;
bottom: 20px;
right: 20px;
color: $neutral-30;
background: $neutral-94;
z-index: 10;
transition: background-color 0.3s;
[data-theme="light"] & {
color: $neutral-30;
background: $neutral-94;
}
[data-theme="dark"] & {
color: $neutral-94;
background: $neutral-30;
}
}