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