This commit is contained in:
syuilo
2018-04-25 22:37:08 +09:00
parent 76c8e05e3a
commit 7ea42af0ba
7 changed files with 179 additions and 29 deletions

View File

@@ -223,18 +223,18 @@ root(isDark)
background $theme-color
> footer
> *
> button
display block
margin 0
padding 16px
width 100%
text-align center
color #ccc
background isDark ? #282C37 : #fff
border-top solid 1px isDark ? #1c2023 : #eaeaea
border-bottom-left-radius 4px
border-bottom-right-radius 4px
border-bottom-left-radius 6px
border-bottom-right-radius 6px
> button
&:hover
background isDark ? #2e3440 : #f5f5f5

View File

@@ -45,7 +45,7 @@
<script lang="ts">
import Vue from 'vue';
import MkListsWindow from './lists-window.vue';
import MkUserListsWindow from './user-lists-window.vue';
import MkSettingsWindow from './settings-window.vue';
import MkDriveWindow from './drive-window.vue';
import contains from '../../../common/scripts/contains';
@@ -86,7 +86,7 @@ export default Vue.extend({
},
list() {
this.close();
(this as any).os.new(MkListsWindow);
(this as any).os.new(MkUserListsWindow);
},
settings() {
this.close();

View File

@@ -1,5 +1,7 @@
<template>
<div>
<mk-notes ref="timeline" :more="existMore ? more : null"/>
</div>
</template>
<script lang="ts">