mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-09 18:09:36 -06:00
24 lines
635 B
SCSS
24 lines
635 B
SCSS
// Global variables
|
|
|
|
// Set base fonts
|
|
$font-family-sans-serif: 'Inter';
|
|
// See https://github.com/tabler/tabler/issues/1812
|
|
$font-family-monospace: 'Roboto Mono';
|
|
|
|
// Set the navigation sidebar width
|
|
$sidebar-width: 18rem;
|
|
|
|
// Reduce the default button padding
|
|
$btn-padding-x: 0.5rem;
|
|
$btn-padding-y: 0.25rem;
|
|
|
|
// Reduce the default table cell padding
|
|
$table-cell-padding-x: 0.5rem;
|
|
$table-cell-padding-y: 0.5rem;
|
|
|
|
// Fix Tabler bug #1694 in 1.0.0-beta20
|
|
$hover-bg: rgba(var(--tblr-secondary-rgb), 0.08);
|
|
|
|
// Ensure active nav-pill has a background color in dark mode
|
|
$nav-pills-link-active-bg: rgba(var(--tblr-secondary-rgb), 0.15);
|