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

@@ -85,7 +85,7 @@ export default Vue.extend({
</script>
<style lang="stylus" scoped>
root(isDark)
.profile
background var(--face)
box-shadow var(--shadow)
border-radius var(--round)
@@ -96,7 +96,7 @@ root(isDark)
> .friend-form
padding 16px
text-align center
border-bottom solid 1px isDark ? #21242f : #eee
border-bottom solid 1px var(--faceDivider)
> .followed
margin 12px 0 0 0
@@ -114,7 +114,7 @@ root(isDark)
> .action-form
padding 16px
text-align center
border-bottom solid 1px isDark ? #21242f : #eee
border-bottom solid 1px var(--faceDivider)
> *
width 100%
@@ -122,10 +122,4 @@ root(isDark)
&:not(:last-child)
margin-bottom 12px
.profile[data-darkmode]
root(true)
.profile:not([data-darkmode])
root(false)
</style>