refs #888 Fix selector scope in App
This commit is contained in:
parent
d925f18112
commit
8fdd104629
|
@ -44,7 +44,8 @@ export default {
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
html, body, #app {
|
html,
|
||||||
|
body {
|
||||||
--theme-background-color: #ffffff;
|
--theme-background-color: #ffffff;
|
||||||
--theme-selected-background-color: #f2f6fc;
|
--theme-selected-background-color: #f2f6fc;
|
||||||
--theme-global-header-color: #4a5664;
|
--theme-global-header-color: #4a5664;
|
||||||
|
@ -89,7 +90,14 @@ html, body, #app {
|
||||||
button {
|
button {
|
||||||
font-family: var(--specified-fonts);
|
font-family: var(--specified-fonts);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
html, body, #app, #global_header {
|
||||||
|
height: 100%;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#app {
|
||||||
::-webkit-scrollbar {
|
::-webkit-scrollbar {
|
||||||
width: 8px;
|
width: 8px;
|
||||||
}
|
}
|
||||||
|
@ -104,11 +112,6 @@ html, body, #app {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
html, body, #app, #global_header {
|
|
||||||
height: 100%;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
p {
|
p {
|
||||||
margin: 8px 0;
|
margin: 8px 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue