Skip to content

Commit dd9f429

Browse files
Merge pull request #2 from rashmi73/issue_2398
Fix Issue #13
2 parents b1cbdbe + 174cda9 commit dd9f429

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
lines changed

dist/dev/index.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/prod/index.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/AccountMenu/styles.module.scss

+2-1
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@
192192

193193
.separator {
194194
background: $gray-05;
195-
width: calc(100% - 80px);
195+
width: calc(100% - 46px);
196196
margin: $base-unit * 3 0;
197197
height: 1px;
198198
align-self: center;
@@ -236,6 +236,7 @@
236236
}
237237
}
238238
}
239+
239240
}
240241
}
241242
}

src/components/TopNav/MobileNav.module.scss

+8-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
.mobileNav {
55
height: 60px;
66
background: $gray-90;
7-
padding: 0 $base-unit * 4 0 0;
87
display: flex;
9-
justify-content: space-between;
8+
justify-content: center;
9+
position: relative;
1010
align-items: center;
1111

1212
@include mobile-only;
@@ -17,6 +17,9 @@
1717
display: flex;
1818
justify-content: center;
1919
align-items: center;
20+
position: absolute;
21+
left: 0;
22+
top: 0;
2023

2124
.menuBtn {
2225
@include button-reset;
@@ -35,5 +38,8 @@
3538
color: $white;
3639
font-size: 16px;
3740
line-height: 30px;
41+
padding-right: $base-unit * 4;
42+
position: absolute;
43+
right: 0;
3844
}
3945
}

0 commit comments

Comments
 (0)