use base css

This commit is contained in:
Harsh Mahajan
2026-01-06 15:45:17 +05:30
parent 01a7cdc926
commit bb769727f9
2 changed files with 7 additions and 7 deletions
+6
View File
@@ -0,0 +1,6 @@
.responsive-table {
overflow: hidden;
width: 100%;
scrollbar-width: thin;
position: relative;
}
+1 -7
View File
@@ -17,6 +17,7 @@
import { ThemeDark, ThemeLight, ThemeDarkCloud, ThemeLightCloud } from '../themes';
import { isSmallViewport, updateViewport } from '$lib/stores/viewport';
import { feedback } from '$lib/stores/feedback';
import '$lib/profiles/css/base.css';
function resolveTheme(theme: AppStore['themeInUse']) {
switch (theme) {
@@ -309,11 +310,4 @@
background-color: var(--color-mid-neutral-70, #56565c);
}
}
.responsive-table {
overflow: hidden;
width: 100%;
scrollbar-width: thin;
position: relative;
}
</style>