Skip to content

Commit

Permalink
fix: bottom padding missing unit (#765)
Browse files Browse the repository at this point in the history
  • Loading branch information
zainab-amir authored Mar 1, 2023
1 parent 1a61ba3 commit f291efc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/recommendations/RecommendationsPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ const RecommendationsPage = (props) => {
{ siteName: getConfig().SITE_NAME })}
</title>
</Helmet>
<div className="d-flex flex-column vh-100">
<div className="d-flex flex-column vh-100 bg-light-200">
<div className="mb-2">
<div className="col-md-12 small-screen-top-stripe medium-screen-top-stripe extra-large-screen-top-stripe" />
<Hyperlink destination={getConfig().MARKETING_SITE_BASE_URL}>
Expand Down
2 changes: 1 addition & 1 deletion src/sass/_recommendations_page.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.card-list {
padding-left: 0.0625rem;
padding-bottom: 0.125;
padding-bottom: 0.125rem;
@include media-breakpoint-down(xl) {
overflow-x: scroll;
overflow-y: hidden;
Expand Down

0 comments on commit f291efc

Please sign in to comment.