Merge pull request #1295 from rinsuki/features/user-tab-position-sticky

モバイル版のユーザーページの表示切り変えnavを上についてくるように
This commit is contained in:
syuilo 2018-03-26 16:11:04 +09:00 committed by GitHub
commit 8bdb074b5d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -40,12 +40,14 @@
</a>
</div>
</div>
<nav>
</header>
<nav>
<div class="nav-container">
<a :data-is-active=" page == 'home' " @click="page = 'home'">%i18n:mobile.tags.mk-user.overview%</a>
<a :data-is-active=" page == 'posts' " @click="page = 'posts'">%i18n:mobile.tags.mk-user.timeline%</a>
<a :data-is-active=" page == 'media' " @click="page = 'media'">%i18n:mobile.tags.mk-user.media%</a>
</nav>
</header>
</div>
</nav>
<div class="body">
<x-home v-if="page == 'home'" :user="user"/>
<mk-user-timeline v-if="page == 'posts'" :user="user"/>
@ -109,7 +111,6 @@ export default Vue.extend({
main
> header
box-shadow 0 4px 4px rgba(0, 0, 0, 0.3)
> .banner
padding-bottom 33.3%
@ -207,7 +208,13 @@ main
> i
font-size 14px
> nav
> nav
position sticky
top 48px
box-shadow 0 4px 4px rgba(0, 0, 0, 0.3)
background-color #313a42
z-index 1
> .nav-container
display flex
justify-content center
margin 0 auto