mirror of
https://github.com/logto-io/logto.git
synced 2025-01-27 21:39:16 -05:00
85a055efa4
* dark mode * i18n * sign out * fetch userinfo
38 lines
634 B
SCSS
38 lines
634 B
SCSS
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: sans-serif;
|
|
background: var(--color-base);
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: auto;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
-webkit-tap-highlight-color: transparent;
|
|
text-underline-offset: 2px;
|
|
}
|
|
|
|
input {
|
|
border: none;
|
|
outline: none;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 16px;
|
|
}
|
|
|
|
::-webkit-scrollbar:horizontal {
|
|
height: 16px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: var(--color-neutral-variant-80);
|
|
background-clip: content-box;
|
|
border: 4px solid transparent;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: transparent;
|
|
}
|