Adjust base font weight to 500

This commit is contained in:
Jeremy Stretch 2024-08-01 15:10:31 -04:00
parent e02f3862c7
commit d3e054686d
4 changed files with 7 additions and 1 deletions

Binary file not shown.

View File

@ -4,6 +4,7 @@
$font-family-sans-serif: 'Plus Jakarta Sans Variable', system-ui, sans-serif;
// See https://github.com/tabler/tabler/issues/1812
$font-family-monospace: 'Roboto Mono';
$font-weight-base: 500;
// Set the navigation sidebar width
$sidebar-width: 18rem;

View File

@ -20,3 +20,8 @@ hr.dropdown-divider {
margin-bottom: 0.25rem;
margin-top: 0.25rem;
}
// Bootstrap forces the font weight for dropdown items to $font-weight-normal
.dropdown-item {
font-weight: $font-weight-base;
}

View File

@ -28,7 +28,7 @@ table.attr-table {
// Restyle row header
th {
font-weight: normal;
font-weight: $font-weight-base;
width: min-content;
}