refs #132 Set default font and height in App

This commit is contained in:
AkiraFukushima 2018-04-01 12:10:54 +09:00
parent 9fa85e59fc
commit e2a89672d5
5 changed files with 19 additions and 32 deletions

View File

@ -17,6 +17,17 @@
</script>
<style lang="scss">
body { font-family: 'Noto Sans', sans-serif; }
html, body, #app, #global_header {
height: 100%;
margin: 0;
}
p {
margin: 8px 0;
}
.clearfix:after {
content:" ";
display:block;

View File

@ -50,18 +50,12 @@ export default {
}
</script>
<style lang="scss">
body { font-family: 'Noto Sans', 'Source Sans Pro', sans-serif; }
html, body, #app, #authorize {
height: 100%;
margin: 0;
}
#authorize {
<style lang="scss" scoped>
#authorize /deep/ {
background-color: #292f3f;
color: #ffffff;
text-align: center;
min-height: 100%;
.close {
text-align: right;

View File

@ -63,19 +63,8 @@ export default {
}
</script>
<style lang="scss">
body { font-family: 'Noto Sans', sans-serif; }
html, body, #app, #global_header {
height: 100%;
margin: 0;
}
p {
margin: 8px 0;
}
#global_header {
<style lang="scss" scoped>
#global_header /deep/ {
.account-menu {
height: 100%;
position: fixed;

View File

@ -30,15 +30,8 @@ export default {
}
</script>
<style lang="scss">
body { font-family: 'Noto Sans', 'Source Sans Pro', sans-serif; }
html, body, #app {
height: 100%;
margin: 0;
}
#login {
<style lang="scss" scoped>
#login /deep/ {
background-color: #292f3f;
color: #ffffff;
text-align: center;

View File

@ -1,6 +1,6 @@
<template>
<div id="account">
account
<h2>Account</h2>
</div>
</template>