Skip to content

Commit

Permalink
fixup for widths
Browse files Browse the repository at this point in the history
  • Loading branch information
jenbreese committed Jul 3, 2024
1 parent 54e7049 commit df552ec
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/css/main.css

Large diffs are not rendered by default.

14 changes: 12 additions & 2 deletions src/scss/components/banner/_overlay-banner.scss
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,12 @@
}

.su-hero__card {
left: 8%;
left: 3%;
max-width: calc(50% - 70px);

@include grid-media-max('md') {
max-width: calc(100% - 70px);
}
}
}

Expand All @@ -105,7 +110,12 @@
}

.su-hero__card {
right: 7%;
right: 3%;
max-width: calc(50% - 70px);

@include grid-media-max('md') {
max-width: calc(100% - 70px);
}
}
}
}
Expand Down

0 comments on commit df552ec

Please sign in to comment.