mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-21 03:22:11 +00:00
app declared transparent by default
This commit is contained in:
parent
3f3095d664
commit
524fc84dbd
1 changed files with 30 additions and 34 deletions
|
|
@ -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);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
Loading…
Reference in a new issue