Skip to content

Commit

Permalink
fix: header fixes for pages (#244)
Browse files Browse the repository at this point in the history
  • Loading branch information
melniiv committed Mar 2, 2023
1 parent 7e15ddc commit 276468c
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 21 deletions.
12 changes: 5 additions & 7 deletions apps/events-helsinki/src/styles/globals.scss
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,10 @@ button {
display: none;
}

.page,
.article-page {
header > h1 {
font-size: var(--fontsize-heading-xl);
@include respond_below(s) {
font-size: var(--fontsize-heading-xl-mobile);
}
.page h1,
.article-page header > h1 {
font-size: var(--fontsize-heading-xl) !important;
@include respond_below(s) {
font-size: var(--fontsize-heading-xl-mobile) !important;
}
}
12 changes: 5 additions & 7 deletions apps/hobbies-helsinki/src/styles/globals.scss
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,10 @@ button {
display: none;
}

.page,
.article-page {
header > h1 {
font-size: var(--fontsize-heading-xl);
@include respond_below(s) {
font-size: var(--fontsize-heading-xl-mobile);
}
.page h1,
.article-page header > h1 {
font-size: var(--fontsize-heading-xl) !important;
@include respond_below(s) {
font-size: var(--fontsize-heading-xl-mobile) !important;
}
}
12 changes: 5 additions & 7 deletions apps/sports-helsinki/src/styles/globals.scss
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,10 @@ button {
display: none;
}

.page,
.article-page {
header > h1 {
font-size: var(--fontsize-heading-xl);
@include respond_below(s) {
font-size: var(--fontsize-heading-xl-mobile);
}
.page h1,
.article-page header > h1 {
font-size: var(--fontsize-heading-xl) !important;
@include respond_below(s) {
font-size: var(--fontsize-heading-xl-mobile) !important;
}
}

0 comments on commit 276468c

Please sign in to comment.