Skip to content

Commit 7e6d0e4

Browse files
committed
2 parents 8fe145a + 1683936 commit 7e6d0e4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/components/navigation/Navbar.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export default {
3232
scaleFactor = 0.5;
3333
}
3434
let n = (30 * scaleFactor) * (1 - this.progress) + (10 * scaleFactor) * this.progress
35-
return `${n}px 10px ${10 + n}px 10px`;
35+
return `${n}px 10px ${n}px 10px`;
3636
},
3737
color() {
3838
if (this.$el) {
@@ -113,7 +113,7 @@ export default {
113113
.navbar {
114114
position: fixed;
115115
width: 100vw;
116-
height: 55px;
116+
// height: 55px;
117117
@include mobile {
118118
text-align: left;
119119
}

src/scss/underline.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
padding-right: 0px;
1313
//background: none repeat scroll 0 0 transparent;
1414
background: $color;
15-
margin-top: 5px;
15+
transform: translateY(5px);
1616
border-radius: 5vh;
1717
}
1818
&:hover:after {

0 commit comments

Comments
 (0)