style: change position for toolbar

This commit is contained in:
MAZE 2024-02-28 22:54:54 +03:30
parent dfd6c1fc4a
commit e7fd84bd4e
2 changed files with 10 additions and 2 deletions

View File

@ -1,9 +1,13 @@
.wrapper {
position: fixed;
right: 20px;
right: calc(50vw - 400px);
bottom: 20px;
z-index: 15;
@media (width <= 850px) {
right: 5vw;
}
& .menuButton {
display: flex;
align-items: center;

View File

@ -1,7 +1,7 @@
.button {
position: fixed;
bottom: 20px;
left: 20px;
left: calc(50vw - 400px);
z-index: 10;
display: flex;
align-items: center;
@ -16,6 +16,10 @@
border-radius: 50%;
transition: 0.2s;
@media (width <= 850px) {
left: 5vw;
}
&:hover {
background-color: var(--color-neutral-200);
}