This commit is contained in:
syuilo
2018-06-03 04:51:58 +09:00
parent 0aa9201770
commit 255c07d1ab
4 changed files with 9 additions and 8 deletions

View File

@ -3,6 +3,7 @@
<main v-if="$store.getters.isSignedIn">
<p class="fetching" v-if="fetching">読み込み中<mk-ellipsis/></p>
<x-form
class="form"
ref="form"
v-if="state == 'waiting'"
:session="session"
@ -102,7 +103,7 @@ export default Vue.extend({
padding 32px
color #555
> div
> div:not(.form)
padding 64px
> h1

View File

@ -463,7 +463,7 @@ root(isDark)
> .app
margin-right 8px
padding-right 8px
border-right solid 1px #eaeaea
border-right solid 1px isDark ? #1c2023 : #eaeaea
> .visibility
margin-left 8px
@ -552,7 +552,7 @@ root(isDark)
padding 2px 8px 2px 16px
font-size 90%
color #8d969e
background #edf0f3
background isDark ? #313543 : #edf0f3
border-radius 4px
&:before
@ -565,7 +565,7 @@ root(isDark)
width 8px
height 8px
margin auto 0
background #fff
background isDark ? #282c37 : #fff
border-radius 100%
&:hover

View File

@ -502,7 +502,7 @@ root(isDark)
padding 2px 8px 2px 16px
font-size 90%
color #8d969e
background #edf0f3
background isDark ? #313543 : #edf0f3
border-radius 4px
&:before
@ -515,7 +515,7 @@ root(isDark)
width 8px
height 8px
margin auto 0
background #fff
background isDark ? #282c37 : #fff
border-radius 100%
> .media