18 lines
439 B
SCSS
18 lines
439 B
SCSS
.breadcrumb {
|
|
&.breadcrumb-right {
|
|
justify-content: flex-end;
|
|
margin-top: $breadcrumb-margin-top;
|
|
}
|
|
&.breadcrumb-center {
|
|
justify-content: center;
|
|
margin-top: $breadcrumb-margin-top;
|
|
}
|
|
}
|
|
|
|
html[data-bs-theme="dark"] {
|
|
.breadcrumb {
|
|
background-color: #232323 !important;
|
|
color: #e0e0e0 !important;
|
|
// Add more styles as needed for dark mode
|
|
}
|
|
} |