mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-03-29 13:54:45 -05:00
24 lines
398 B
CSS
24 lines
398 B
CSS
.hamburger.fab {
|
|
display: grid;
|
|
position: fixed;
|
|
right: 27.5px;
|
|
bottom: 105px;
|
|
border-radius: 100%;
|
|
width: 3.75rem;
|
|
height: 3.75rem;
|
|
backdrop-filter: var(--backdrop-filter);
|
|
background-color: transparent;
|
|
border-color: var(--theme-transparent);
|
|
}
|
|
|
|
.hamburger.fab svg {
|
|
width: 2.25rem;
|
|
stroke-width: 2px;
|
|
}
|
|
|
|
@media screen and (min-width: 600px) {
|
|
.hamburger.fab {
|
|
display: none;
|
|
}
|
|
}
|