mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +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;
|
||||
}
|
||||
|
||||
html, body, :global(#app) {
|
||||
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;
|
||||
html {
|
||||
background-color: var(--color-background);
|
||||
|
||||
.router {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
&, body, :global(#app) {
|
||||
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;
|
||||
|
||||
input {
|
||||
&::-moz-focus-inner {
|
||||
border: none;
|
||||
.router {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
&[type="email"], &[type="password"], &[type="text"] {
|
||||
user-select: text;
|
||||
input {
|
||||
&::-moz-focus-inner {
|
||||
border: none;
|
||||
}
|
||||
|
||||
&[type="email"], &[type="password"], &[type="text"] {
|
||||
user-select: text;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
::-webkit-scrollbar {
|
||||
width: var(--scroll-bar-width);
|
||||
}
|
||||
::-webkit-scrollbar {
|
||||
width: var(--scroll-bar-width);
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
background-color: var(--color-secondarylighter80);
|
||||
}
|
||||
::-webkit-scrollbar-thumb {
|
||||
background-color: var(--color-secondarylighter80);
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-track {
|
||||
background-color: var(--color-backgroundlight);
|
||||
::-webkit-scrollbar-track {
|
||||
background-color: var(--color-backgroundlight);
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue