PicList/src/renderer/App.vue

28 lines
471 B
Vue
Raw Normal View History

2017-11-27 19:21:12 -05:00
<template>
<div id="app">
<router-view></router-view>
</div>
</template>
<script>
export default {
name: 'picgo'
}
</script>
<style lang="stylus">
body,
html
padding 0
margin 0
height 100%
font-family "Helvetica Neue",Helvetica,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","微软雅黑",Arial,sans-serif
2017-11-28 10:56:15 -05:00
#app
user-select none
2018-06-25 12:19:40 -04:00
overflow hidden
.el-button-group
width 100%
.el-button
width 50%
2017-11-27 19:21:12 -05:00
</style>