refs #888 Fix selector scope in App

This commit is contained in:
AkiraFukushima 2019-04-20 00:27:57 +09:00
parent d925f18112
commit 8fdd104629
1 changed files with 9 additions and 6 deletions

View File

@ -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;
}