mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
26 lines
399 B
SCSS
26 lines
399 B
SCSS
![]() |
// Restore default foreground & background colors for <pre> blocks
|
||
|
pre {
|
||
|
background-color: transparent;
|
||
|
color: inherit;
|
||
|
}
|
||
|
|
||
|
// Buttons
|
||
|
.btn {
|
||
|
// Tabler sets display: flex
|
||
|
display: inline-block;
|
||
|
}
|
||
|
|
||
|
// Tabs
|
||
|
.nav-tabs {
|
||
|
.nav-link {
|
||
|
// Tabler sets display: flex
|
||
|
display: inline-block;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Dropdown items
|
||
|
.dropdown-item {
|
||
|
// Tabler sets display: flex
|
||
|
display: inline-block;;
|
||
|
}
|