refs #132 Set default font and height in App
This commit is contained in:
parent
9fa85e59fc
commit
e2a89672d5
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<template>
|
||||
<div id="account">
|
||||
account
|
||||
<h2>Account</h2>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
|
Loading…
Reference in New Issue