Skip to content
This repository was archived by the owner on Feb 5, 2022. It is now read-only.

fix(footer): about footer headers #516

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/app-footer/app-footer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@
font-size: 1.6rem;
line-height: normal;
margin-bottom: 1.5rem;
letter-spacing:normal;
letter-spacing: normal;
text-align: left;
@include media-breakpoint-down(md) {
font-size: 1.3rem;
margin-bottom: 1rem;
}
@include media-breakpoint-down(sm){
@include media-breakpoint-down(sm) {
text-align: center;
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/app-about/app-about.scss
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
text-align: left;
}

h2 {
h2.about-header {
@include media-breakpoint-down(md) {
font-size: 1.75rem;
line-height: 34px;
Expand Down
6 changes: 3 additions & 3 deletions src/pages/app-about/app-about.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export class AppAbout {
<div class="container-fluid">
<div class="row align-items-center hero">
<div class="col-12 col-md-11 offset-md-1">
<h1 data-cy='title-hero'>
<h1 data-cy="title-hero">
<app-translate class="d-none d-md-block" keyword="about.header.title" />
<app-translate class="d-block d-md-none" keyword="about.header.titleSmall" />
</h1>
Expand All @@ -41,7 +41,7 @@ export class AppAbout {

<div class="row justify-content-center d-none d-md-block values">
<div class="col-12">
<h2 class="aside-lines">
<h2 class="about-header aside-lines">
<span>
<app-translate keyword="about.values.title" />
</span>
Expand Down Expand Up @@ -77,7 +77,7 @@ export class AppAbout {

<div id="members" class="row justify-content-center members">
<div class="col-10 col-lg-10">
<h2>
<h2 class="about-header">
<app-translate keyword="about.landing.cta.title" />
</h2>
<app-members-section />
Expand Down