Skip to content

Commit

Permalink
Update gaps
Browse files Browse the repository at this point in the history
  • Loading branch information
mstrasinskis committed Nov 6, 2024
1 parent a8120a8 commit ef479ef
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
10 changes: 7 additions & 3 deletions frontend/src/lib/components/common/PageHeader.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
position: relative;
display: flex;
flex-direction: column;
row-gap: var(--padding-3x);
column-gap: var(--padding);
@include media.min-width(medium) {
flex-direction: row;
Expand All @@ -38,15 +40,17 @@
justify-content: space-between;
}
}
.navigation {
display: flex;
align-items: center;
order: -1;
align-self: end;
@include media.min-width(medium) {
align-self: auto;
order: initial;
display: flex;
align-items: center;
align-self: auto;
}
}
</style>
Original file line number Diff line number Diff line change
Expand Up @@ -61,19 +61,14 @@
align-items: center;
column-gap: var(--padding);
color: var(--elements-icons);
padding-bottom: var(--padding-3x);
@include media.min-width(medium) {
padding-bottom: 0;
}
}
a {
display: flex;
align-items: center;
&.hidden {
visibility: hidden;
opacity: 0;
}
}
</style>

0 comments on commit ef479ef

Please sign in to comment.