mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-21 15:52:02 +00:00
app background asigned only to HTML element
This commit is contained in:
parent
fb90879d33
commit
0055aad30c
1 changed files with 30 additions and 27 deletions
|
|
@ -65,41 +65,44 @@
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
html, body, :global(#app) {
|
html {
|
||||||
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;
|
|
||||||
background-color: var(--color-background);
|
background-color: var(--color-background);
|
||||||
|
|
||||||
.router {
|
&, body, :global(#app) {
|
||||||
width: 100%;
|
position: relative;
|
||||||
height: 100%;
|
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;
|
||||||
|
|
||||||
input {
|
.router {
|
||||||
&::-moz-focus-inner {
|
width: 100%;
|
||||||
border: none;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
&[type="email"], &[type="password"], &[type="text"] {
|
input {
|
||||||
user-select: text;
|
&::-moz-focus-inner {
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
&[type="email"], &[type="password"], &[type="text"] {
|
||||||
|
user-select: text;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
::-webkit-scrollbar {
|
::-webkit-scrollbar {
|
||||||
width: var(--scroll-bar-width);
|
width: var(--scroll-bar-width);
|
||||||
}
|
}
|
||||||
|
|
||||||
::-webkit-scrollbar-thumb {
|
::-webkit-scrollbar-thumb {
|
||||||
background-color: var(--color-secondarylighter80);
|
background-color: var(--color-secondarylighter80);
|
||||||
}
|
}
|
||||||
|
|
||||||
::-webkit-scrollbar-track {
|
::-webkit-scrollbar-track {
|
||||||
background-color: var(--color-backgroundlight);
|
background-color: var(--color-backgroundlight);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Loading…
Reference in a new issue