Sharkey/src/client/app/desktop/views/pages/deck/deck.vue

44 lines
701 B
Vue
Raw Normal View History

2018-06-05 15:36:21 +03:00
<template>
<mk-ui :class="$style.root">
<div class="qlvquzbjribqcaozciifydkngcwtyzje">
<x-column src="home"/>
<x-column src="home"/>
<x-column src="home"/>
<x-column src="home"/>
</div>
</mk-ui>
</template>
<script lang="ts">
import Vue from 'vue';
import XColumn from './deck.column.vue';
export default Vue.extend({
components: {
XColumn
}
});
</script>
<style lang="stylus" module>
.root
height 100vh
</style>
<style lang="stylus" scoped>
@import '~const.styl'
root(isDark)
display flex
flex 1
2018-06-05 15:44:02 +03:00
padding 16px 0 16px 16px
overflow auto
2018-06-05 15:36:21 +03:00
.qlvquzbjribqcaozciifydkngcwtyzje[data-darkmode]
root(true)
.qlvquzbjribqcaozciifydkngcwtyzje:not([data-darkmode])
root(false)
</style>