Skip to content

Commit

Permalink
footer alignment update
Browse files Browse the repository at this point in the history
  • Loading branch information
filipslezaklab committed Oct 3, 2023
1 parent 92d7c25 commit 1064cc2
Show file tree
Hide file tree
Showing 11 changed files with 119 additions and 23 deletions.
22 changes: 19 additions & 3 deletions scss/components/_footer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,10 @@ footer {
gap: 10px;

li {
display: flex;
flex-flow: row;
align-items: flex-end;
justify-content: flex-start;
width: 100%;
height: 48px;

Expand All @@ -85,6 +89,8 @@ footer {
text-decoration: none;
@include typography(paragraph);
cursor: pointer;
position: relative;
height: auto;

color: #000;

Expand Down Expand Up @@ -141,9 +147,19 @@ footer {
}

& > .contact {
@include media-breakpoint-down(lg) {
grid-row: 2 / 4;
grid-column: 2 / 3;
grid-row: 2 / 3;
grid-column: 2 / 3;

@include media-breakpoint-up(lg) {
grid-row: 1 / 3;
grid-column: 3 / 4;
align-self: center;
}

@include media-breakpoint-up(xl) {
grid-row: 1;
grid-column: 4 / 5;
align-self: end;
}

text-align: right;
Expand Down
22 changes: 19 additions & 3 deletions src/assets/css/pages/article.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/assets/css/pages/article.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 19 additions & 3 deletions src/assets/css/pages/contact.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/assets/css/pages/contact.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 1064cc2

Please sign in to comment.