forked from FoundKeyGang/FoundKey
2.25.1
This commit is contained in:
parent
0aa9201770
commit
255c07d1ab
4 changed files with 9 additions and 8 deletions
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"name": "misskey",
|
||||
"author": "syuilo <i@syuilo.com>",
|
||||
"version": "2.25.0",
|
||||
"clientVersion": "1.0.6111",
|
||||
"version": "2.25.1",
|
||||
"clientVersion": "1.0.6112",
|
||||
"codename": "nighthike",
|
||||
"main": "./built/index.js",
|
||||
"private": true,
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue