app declared transparent by default

This commit is contained in:
NikolaBorislavovHristov 2019-03-21 16:21:35 +02:00
parent 3f3095d664
commit 524fc84dbd

View file

@ -65,44 +65,40 @@
box-shadow: none; box-shadow: none;
} }
html { html, body, :global(#app) {
background-color: var(--color-background); position: relative;
z-index: 0;
width: 100vw;
height: 100vh;
min-width: var(--window-min-width);
min-height: var(--window-min-height);
font-family: 'Roboto', 'sans-serif';
line-height: 1;
&, body, :global(#app) { .router {
position: relative; width: 100%;
z-index: 0; height: 100%;
width: 100vw; }
height: 100vh;
min-width: var(--window-min-width);
min-height: var(--window-min-height);
font-family: 'Roboto', 'sans-serif';
line-height: 1;
.router { input {
width: 100%; &::-moz-focus-inner {
height: 100%; border: none;
} }
input { &[type="email"], &[type="password"], &[type="text"] {
&::-moz-focus-inner { user-select: text;
border: none;
}
&[type="email"], &[type="password"], &[type="text"] {
user-select: text;
}
}
::-webkit-scrollbar {
width: var(--scroll-bar-width);
}
::-webkit-scrollbar-thumb {
background-color: var(--color-secondarylighter80);
}
::-webkit-scrollbar-track {
background-color: var(--color-backgroundlight);
} }
} }
::-webkit-scrollbar {
width: var(--scroll-bar-width);
}
::-webkit-scrollbar-thumb {
background-color: var(--color-secondarylighter80);
}
::-webkit-scrollbar-track {
background-color: var(--color-backgroundlight);
}
} }