Skip to content

Commit

Permalink
fix: mobile styling broken in flarum v1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
SychO9 committed Sep 19, 2022
1 parent a1f181e commit 9dd71bd
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions less/forum.less
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@
animation: private-facade-appear 0.5s ease-in;
transform: none;
box-shadow: none;
top: 0;
z-index: var(--zindex-modal);

&-header, &-body, &-footer, &-content {
background-color: transparent;
Expand All @@ -95,14 +97,19 @@
justify-content: space-between;
align-items: flex-end;

> p {
margin: 0;
}
}
}

@media @phone {
&-header {
> h3 {
display: flex;
gap: 16px;
gap: 8px;
align-items: center;
}

> p {
margin: 0;
justify-content: center;
}
}
}
Expand Down

0 comments on commit 9dd71bd

Please sign in to comment.