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> </script>
<style lang="scss"> <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 { .clearfix:after {
content:" "; content:" ";
display:block; display:block;

View File

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

View File

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

View File

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

View File

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