Skip to content

Commit a36d2e1

Browse files
Fix Issue #158 : Space between bell and pink mark icons
1 parent e271381 commit a36d2e1

File tree

3 files changed

+9
-13
lines changed

3 files changed

+9
-13
lines changed

dist/dev/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/prod/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/NotificationButton/styles.module.scss

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@
44
.notificationButton {
55
@include hide-mobile;
66
position: relative;
7-
width: 36px;
8-
height: 36px;
9-
padding: 5px;
7+
display: flex;
8+
align-items: center;
9+
justify-content: center;
10+
width: 30px;
11+
height: 30px;
1012

1113
img {
1214
display: block;
@@ -16,19 +18,13 @@
1618
opacity: 0.5;
1719
}
1820

19-
&.new {
20-
padding: 5px;
21-
width: 36px;
22-
height: 36px;
23-
}
24-
2521
&.new::after {
2622
content: "";
2723
width: 6px;
2824
height: 6px;
2925
position: absolute;
30-
top: 6px;
31-
right: 5px;
26+
top: -1px;
27+
right: 3px;
3228
background: $red;
3329
border-radius: 6px;
3430
display: block;

0 commit comments

Comments
 (0)