mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 10:06:53 +08:00
38 lines
610 B
CSS
38 lines
610 B
CSS
@import "tailwind/inputs";
|
|
@import "tailwind/buttons";
|
|
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
|
|
html {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.border {
|
|
border-style: solid;
|
|
border-color: theme('borderColor.DEFAULT', currentColor);
|
|
}
|
|
|
|
.scroll-container .ps__rail-y{
|
|
background-color: var(--sn-white);
|
|
opacity: 1;
|
|
}
|
|
|
|
.scroll-container .ps__thumb-y{
|
|
background-color: var(--sn-grey);
|
|
opacity: 1;
|
|
right: 5px;
|
|
}
|
|
|
|
.scroll-container .ps__rail-x{
|
|
background-color: var(--sn-white);
|
|
opacity: 1;
|
|
}
|
|
|
|
.scroll-container .ps__thumb-x{
|
|
background-color: var(--sn-grey);
|
|
opacity: 1;
|
|
bottom: 5px;
|
|
}
|