@import "fonts";
@import "palette-colors";
@import "mixins";
@import "design-tokens";
@import "spacing";
@import "components/typography";
@import "components/palette";
@import "components/loader";
@import "components/buttons";
@import "components/forms";
@import "components/lists";
@import "components/badges";
@import "components/tables";
@import "components/toasts";
@import "components/cards";
@import "components/modals";
@import "components/alerts";
@import "components/advanced-select";
@import "components/editable-string";
@import "components/navigation-overlays";
@import "utils";
* {
box-sizing: border-box;
}
html,
body {
padding: 0;
margin: 0;
}
body {
background-color: $surface-page;
color: $color-text-light;
}
*::-webkit-scrollbar {
width: 10px;
}
*::-webkit-scrollbar-track {
width: 10px;
background: $surface-page;
cursor: pointer;
}
*::-webkit-scrollbar-thumb {
width: 10px;
background: $color-grey;
cursor: default;
}
*::-webkit-scrollbar-corner {
background: transparent;
height: 1px;
}
*::-webkit-scrollbar-button {
display: none;
}
.ph.normalize {
position: relative;
top: 0.15em;
}