Skip to content

Commit b1e886b

Browse files
committed
Fixes margins on notification inbox
1 parent 241de0b commit b1e886b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

app/assets/v2/scss/notifications.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ html.dark-mode {
218218
background: white;
219219
padding-bottom: 1rem;
220220
margin-bottom: 3rem;
221-
margin-top: -3em;
221+
margin-top: 3rem;
222222
z-index: 0;
223223
position: relative;
224224
border-radius: 4px;

app/inbox/templates/inbox.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@
2323
{% include 'shared/head.html' %}
2424
{% include 'shared/cards.html' %}
2525
</head>
26-
<body class="{{ active }} bg-lightblue g-font-muli">
26+
<body class="{{ active }} g-font-muli">
2727
<div class="content__main min-vh-100 d-md-flex flex-column">
2828
{% include 'shared/top_nav.html' with class='d-md-flex' %}
2929
{% include 'shared/nav.html' %}
3030
<header class="header">
3131
{% include 'shared/minihero.html' with h1='Notifications' suppress_logo=1 %}
3232
</header>
33-
<section class="container inbox__notifications" id="gc-inbox">
33+
<section class="container inbox__notifications shadow-lg" id="gc-inbox">
3434

3535
<div class="notifications_button-group">
3636
<div class="align-items-center d-flex">

app/retail/templates/shared/minihero.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ <h1 class="minihero__title">{{h1}}</h1>
3232
</div>
3333
{% else %}
3434
<div class="col">
35-
<h1 class="minihero__title mb-2">{{h1}}</h1>
35+
<h1 class="minihero__title mb{% if not suppress_logo %}-2{% else %}-5 mt-1{% endif %}">{{h1}}</h1>
3636
<div class="w-100"></div>
3737
{% if not suppress_logo %}
3838
<img class="about-gc-logo" src="{% static "v2/images/new-logos/gc-h-pos.svg" %}" width="600px" />

0 commit comments

Comments
 (0)