0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-01-27 21:39:16 -05:00
logto/packages/demo-app/src/scss/normalized.scss
Charles Zhao 85a055efa4
feat(demo-app): implement (part 2)
* dark mode
* i18n
* sign out
* fetch userinfo
2022-06-06 20:17:25 +08:00

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;
}