umami/src/components/common/HamburgerButton.module.css

10 lines
111 B
CSS
Raw Normal View History

2022-03-01 03:39:37 +01:00
.button {
display: none;
}
@media only screen and (max-width: 768px) {
.button {
display: flex;
}
}