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