Skip to content

Commit

Permalink
Fixes margins on notification inbox
Browse files Browse the repository at this point in the history
  • Loading branch information
gdixon committed Apr 22, 2021
1 parent 241de0b commit b1e886b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/assets/v2/scss/notifications.scss
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ html.dark-mode {
background: white;
padding-bottom: 1rem;
margin-bottom: 3rem;
margin-top: -3em;
margin-top: 3rem;
z-index: 0;
position: relative;
border-radius: 4px;
Expand Down
4 changes: 2 additions & 2 deletions app/inbox/templates/inbox.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@
{% include 'shared/head.html' %}
{% include 'shared/cards.html' %}
</head>
<body class="{{ active }} bg-lightblue g-font-muli">
<body class="{{ active }} g-font-muli">
<div class="content__main min-vh-100 d-md-flex flex-column">
{% include 'shared/top_nav.html' with class='d-md-flex' %}
{% include 'shared/nav.html' %}
<header class="header">
{% include 'shared/minihero.html' with h1='Notifications' suppress_logo=1 %}
</header>
<section class="container inbox__notifications" id="gc-inbox">
<section class="container inbox__notifications shadow-lg" id="gc-inbox">

<div class="notifications_button-group">
<div class="align-items-center d-flex">
Expand Down
2 changes: 1 addition & 1 deletion app/retail/templates/shared/minihero.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ <h1 class="minihero__title">{{h1}}</h1>
</div>
{% else %}
<div class="col">
<h1 class="minihero__title mb-2">{{h1}}</h1>
<h1 class="minihero__title mb{% if not suppress_logo %}-2{% else %}-5 mt-1{% endif %}">{{h1}}</h1>
<div class="w-100"></div>
{% if not suppress_logo %}
<img class="about-gc-logo" src="{% static "v2/images/new-logos/gc-h-pos.svg" %}" width="600px" />
Expand Down

0 comments on commit b1e886b

Please sign in to comment.