Skip to content

Commit

Permalink
Fix issues with icon covering nav elements.
Browse files Browse the repository at this point in the history
  • Loading branch information
bstopp committed Oct 31, 2023
1 parent 4202733 commit cbd0cf7
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 21 deletions.
6 changes: 5 additions & 1 deletion blocks/header/header.css
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,11 @@ body.light-nav {
height: 100vh;
}

.header.block nav svg {
.header.block nav span.icon {
display: block;
}

.header.block nav span.icon img {
display: inline-block;
height: 100%;
width: 100%;
Expand Down
37 changes: 18 additions & 19 deletions blocks/rows/rows.css
Original file line number Diff line number Diff line change
@@ -1,35 +1,34 @@
.rows.block .row-content {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.rows.block .row-title {
width: 50%;
line-height: var(--line-height-m);
.rows.block .row-title {
width: 50%;
line-height: var(--line-height-m);
}

.rows.block .button-container a {
font-size: var(--body-font-size-xs);
font-size: var(--body-font-size-xs);
}

.rows.block.white-gray > div {
padding: 0 15px;

padding: 0 15px;
}

.rows.block.white-gray > div:nth-child(even) {
background: var(--light-grey);
background: var(--light-grey);
}

@media (max-width: 600px) {
.rows.block .row-content {
display: flex;
flex-direction: column;
justify-content: flex-start;
}
.rows.block .row-content {
display: flex;
flex-direction: column;
justify-content: flex-start;
}

.rows.block .row-title {
width: 100%;
}
}
.rows.block .row-title {
width: 100%;
}
}
3 changes: 2 additions & 1 deletion icons/heart.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit cbd0cf7

Please sign in to comment.