integarting admin dashboard

This commit is contained in:
UronShrestha
2024-07-12 12:51:02 +05:45
parent 2510de390a
commit 1550ab5d30
1758 changed files with 313760 additions and 10 deletions

View File

@ -0,0 +1,42 @@
// Breadcrumb color variations
@mixin breadcrumb-inverse-variant($color) {
background: lighten($color, 25%);
border-color: $color;
.breadcrumb-item {
color: $color;
&:before {
color: inherit;
}
a {
color: inherit;
}
}
&.breadcrumb-custom {
background: transparent;
.breadcrumb-item {
background: lighten($color, 25%);
a {
color: $color;
border: none;
&:before {
border-left-color: lighten($color, 25%);
}
}
span {
color: $color;
}
&:last-child {
background: transparent;
}
}
}
}