This commit is contained in:
syuilo 2018-09-27 22:55:17 +09:00
parent 1e9eeeb980
commit e82a44c03d
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69

View file

@ -127,9 +127,7 @@ export default Vue.extend({
</script> </script>
<style lang="stylus" scoped> <style lang="stylus" scoped>
.account
root(isDark)
> .header > .header
display block display block
margin 0 margin 0
@ -217,7 +215,7 @@ root(isDark)
& + ul & + ul
padding-top 10px padding-top 10px
border-top solid 1px isDark ? #1c2023 : #eee border-top solid 1px var(--faceDivider)
> li > li
display block display block
@ -231,7 +229,7 @@ root(isDark)
padding 0 28px padding 0 28px
margin 0 margin 0
line-height 40px line-height 40px
color isDark ? #c8cece : #868C8C color var(--text)
cursor pointer cursor pointer
* *
@ -287,10 +285,4 @@ root(isDark)
transform-origin: center -16px; transform-origin: center -16px;
} }
.account[data-darkmode]
root(true)
.account:not([data-darkmode])
root(false)
</style> </style>