mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 21:56:12 +08:00
f352c7f186
Working on scrolling and highlighting [SCI-9354] Item card preload and section title animation [SCI-9354] Added box-shadow [SCI-9354] Refactored logic and styles [SCI-9354] PR fix, added back the missing HighlightComponent [SCI-9354] PR fixes, refactoring [SCI-9354] PR fix [SCI-9354] Fixed scrolling to 'Assigned', highlighting [SCI-9354] PR fix, modular logic, rename [SCI-9354]
44 lines
727 B
CSS
44 lines
727 B
CSS
@import "tailwind/inputs";
|
|
@import "tailwind/buttons";
|
|
@import "tailwind/modals";
|
|
@import "tailwind/flyouts";
|
|
@import "tailwind/loader.css";
|
|
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
.tw-hidden {
|
|
@apply hidden
|
|
}
|
|
|
|
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;
|
|
}
|