mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-07 04:20:12 +02:00
c9dbf9b5be
* draft add remotes * add favorite, rating * add basic auth
128 lines
2.0 KiB
SCSS
128 lines
2.0 KiB
SCSS
@use '../../renderer/themes/default.scss';
|
|
@use '../../renderer/themes/dark.scss';
|
|
@use '../../renderer/themes/light.scss';
|
|
@use '../../renderer/styles/ag-grid.scss';
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body,
|
|
html {
|
|
position: absolute;
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow-x: hidden;
|
|
overflow-y: hidden;
|
|
color: var(--content-text-color);
|
|
background: var(--content-bg);
|
|
font-family: var(--content-font-family);
|
|
font-size: var(--root-font-size);
|
|
user-select: none;
|
|
}
|
|
|
|
@media only screen and (max-width: 639px) {
|
|
body,
|
|
html {
|
|
overflow-x: auto;
|
|
}
|
|
}
|
|
|
|
#app {
|
|
height: inherit;
|
|
}
|
|
|
|
*,
|
|
*:before,
|
|
*:after {
|
|
box-sizing: border-box;
|
|
text-rendering: optimizeLegibility;
|
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
-webkit-text-size-adjust: none;
|
|
outline: none;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 12px;
|
|
height: 12px;
|
|
}
|
|
|
|
::-webkit-scrollbar-corner {
|
|
background: var(--scrollbar-track-bg);
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: var(--scrollbar-track-bg);
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: var(--scrollbar-thumb-bg);
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: var(--scrollbar-thumb-bg-hover);
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
button {
|
|
-webkit-app-region: no-drag;
|
|
}
|
|
|
|
.overlay-scrollbar {
|
|
overflow-y: overlay !important;
|
|
overflow-x: overlay !important;
|
|
}
|
|
|
|
.hide-scrollbar {
|
|
scrollbar-width: thin;
|
|
scrollbar-color: transparent transparent;
|
|
|
|
&::-webkit-scrollbar {
|
|
width: 1px;
|
|
}
|
|
|
|
&::-webkit-scrollbar-track {
|
|
background: transparent;
|
|
}
|
|
|
|
&::-webkit-scrollbar-thumb {
|
|
background-color: transparent;
|
|
}
|
|
}
|
|
|
|
.hide-scrollbar::-webkit-scrollbar {
|
|
display: none; /* Safari and Chrome */
|
|
}
|
|
|
|
@keyframes fadeIn {
|
|
from {
|
|
opacity: 0;
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
@keyframes fadeOut {
|
|
from {
|
|
opacity: 1;
|
|
}
|
|
to {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
.mantine-ScrollArea-thumb[data-state='visible'] {
|
|
animation: fadeIn 0.3s forwards;
|
|
}
|
|
|
|
.mantine-ScrollArea-scrollbar[data-state='hidden'] {
|
|
animation: fadeOut 0.2s forwards;
|
|
}
|