umami/components/common/HamburgerButton.module.css
2022-02-28 18:39:37 -08:00

10 lines
111 B
CSS

.button {
display: none;
}
@media only screen and (max-width: 768px) {
.button {
display: flex;
}
}