Compare commits

...

2 commits
develop ... 718

Author SHA1 Message Date
taehoon
c55e73d061 fix mobile layout 2019-12-15 14:31:40 -05:00
taehoon
575598da32 link instance logo to homepage 2019-12-15 14:31:40 -05:00
3 changed files with 8 additions and 10 deletions

View file

@ -325,7 +325,6 @@ i[class*=icon-] {
}
.item {
flex: 1;
line-height: 50px;
height: 50px;
overflow: hidden;
@ -358,16 +357,12 @@ i[class*=icon-] {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
align-items: stretch;
justify-content: center;
flex: 0 0 auto;
z-index: -1;
left: 50%;
transform: translateX(-50%);
transition: opacity;
transition-timing-function: ease-out;
transition-duration: 100ms;
cursor: pointer;
.mask {
mask-repeat: no-repeat;
@ -398,6 +393,7 @@ i[class*=icon-] {
padding-right: 10px;
display: flex;
align-items: center;
justify-content: space-between;
flex-basis: 970px;
height: 50px;

View file

@ -16,7 +16,8 @@
@click="scrollToTop()"
>
<div class="inner-nav">
<div
<router-link
:to="{ name: 'root' }"
class="logo"
:style="logoBgStyle"
>
@ -28,7 +29,7 @@
:src="logo"
:style="logoStyle"
>
</div>
</router-link>
<div class="item">
<router-link
v-if="!hideSitename"

View file

@ -83,6 +83,7 @@
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
}
.mobile-nav-button {