This commit is contained in:
syuilo
2018-09-28 11:23:30 +09:00
parent fccfe19e13
commit 436773837b
3 changed files with 8 additions and 12 deletions

View File

@ -121,10 +121,8 @@ export default Vue.extend({
</script>
<style lang="stylus" scoped>
root(isDark)
$color = isDark ? #c9d2e0 : #777
.nav
$color = var(--text)
.backdrop
position fixed
@ -133,7 +131,7 @@ root(isDark)
z-index 1025
width 100%
height 100%
background isDark ? rgba(#000, 0.7) : rgba(#000, 0.2)
background var(--mobileNavBackdrop)
.body
position fixed
@ -144,7 +142,7 @@ root(isDark)
height 100%
overflow auto
-webkit-overflow-scrolling touch
background isDark ? #16191f : #fff
background var(--secondary)
.me
display block
@ -265,10 +263,4 @@ root(isDark)
opacity: 0;
}
.nav[data-darkmode]
root(true)
.nav:not([data-darkmode])
root(false)
</style>