DarkMode User Photos

This commit is contained in:
Hiramiya 2018-08-27 15:45:35 +01:00 committed by GitHub
parent 6ad31dca76
commit 530ee6f80e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -39,8 +39,9 @@ export default Vue.extend({
</script>
<style lang="stylus" scoped>
root(isDark)
.photos
background #fff
background isDark ? #282C37 : #fff
border solid 1px rgba(#000, 0.075)
border-radius 6px
@ -51,7 +52,8 @@ export default Vue.extend({
line-height 42px
font-size 0.9em
font-weight bold
color #888
background: isDark ? #313543 : inherit
color isDark ? #e3e5e8 : #888
box-shadow 0 1px rgba(#000, 0.07)
> i
@ -85,4 +87,10 @@ export default Vue.extend({
> i
margin-right 4px
.photos[data-darkmode]
root(true)
.photos:not([data-darkmode])
root(false)
</style>