feat: hide .page-header on mobile
All checks were successful
deploy / build (push) Successful in 12m7s

This commit is contained in:
rizaldy 2024-03-02 17:10:30 +07:00
parent 615a84f98b
commit 32e2501d5b

View File

@ -1,9 +1,14 @@
@use "./base.scss";
@use "./variables.scss" as *;
body[data-slug="index"] {
.page-header {
margin-top: -1.5rem;
visibility: hidden;
@media all and (max-width: $fullPageWidth) {
display: none;
}
}
img {