1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-22 11:44:10 +02:00
This commit is contained in:
syuilo
2018-09-28 14:26:20 +09:00
parent 1eef90f6cb
commit c627288bde
20 changed files with 65 additions and 117 deletions

View File

@@ -73,11 +73,11 @@ export default define({
</script>
<style lang="stylus" scoped>
root(isDark)
.mkw-users
.mkw-users--body
> .user
padding 16px
border-bottom solid 1px isDark ? #1c2023 : #eee
border-bottom solid 1px var(--faceDivider)
&:last-child
border-bottom none
@@ -103,14 +103,15 @@ root(isDark)
margin 0
font-size 16px
line-height 24px
color isDark ? #fff : #555
color var(--text)
> .username
display block
margin 0
font-size 15px
line-height 16px
color isDark ? #606984 : #ccc
color var(--text)
opacity 0.7
> .mk-follow-button
position absolute
@@ -132,10 +133,4 @@ root(isDark)
> [data-fa]
margin-right 4px
.mkw-users[data-darkmode]
root(true)
.mkw-users:not([data-darkmode])
root(false)
</style>