Move dashboard styling

This commit is contained in:
Jeremy Stretch 2024-08-01 20:48:26 -04:00
parent 9917979ade
commit c6ff601b85
3 changed files with 13 additions and 13 deletions

View File

@ -0,0 +1,12 @@
// Alter default color for dashboard widget headings
.grid-stack {
.card-header {
// Default color of card header changes depending on theme
&.bg-default {
background: var(--tblr-bg-surface-secondary) !important;
}
a {
color: inherit !important;
}
}
}

View File

@ -6,7 +6,6 @@
// Overrides of external libraries
@import 'overrides/bootstrap';
@import 'overrides/gridstack';
@import 'overrides/tabler';
@import 'overrides/tomselect';
@ -22,6 +21,7 @@
// Custom styling
@import 'custom/code';
@import 'custom/dashboard';
@import 'custom/interfaces';
@import 'custom/markdown';
@import 'custom/misc';

View File

@ -1,12 +0,0 @@
// Altering dashboard card colors
.grid-stack {
.card-header {
// Default color of card header changes depending on theme
&.bg-default {
background: var(--tblr-bg-surface-secondary)!important;
}
a {
color: inherit!important;
}
}
}