argos/dmp-frontend/src/app/ui/misc/breadcrumb/breadcrumb.component.scss

160 lines
2.7 KiB
SCSS

.app-breadcrumb {
// padding: 0.75rem 0.1rem;
// margin-bottom: 1rem;
// background-color: #e9ecef;
// border-radius: 0.25rem;
// margin-top: 2em;
.arrow {
padding-right: 0;
padding-left: 0;
font-size: 1.7em;
}
.link {
font-size: 1.1em;
}
.navbar-brand {
display: flex;
justify-content: center;
align-items: center;
background-color: #f8f8f8;
font-size: 16px;
font-weight: 400;
padding: 0.5em 0.5em;
margin-right: 0rem;
}
.breadcrumb-title {
height: auto;
line-height: 1em;
}
.breadcrumb-item {
display: flex;
align-items: center;
}
.breadcrumb-label {
max-width: auto;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.active {
color: var(--primary-color-3);
}
.icon {
font-size: 1em;
width: auto;
height: auto;
}
}
@media screen and (max-width: 1668px) {
.app-breadcrumb {
.breadcrumb-box {
padding: 0px;
}
.navbar-brand {
display: flex;
justify-content: center;
align-items: center;
background-color: #f8f8f8;
font-size: 15px;
font-weight: 400;
padding: 0.5em 0.5em;
margin-left: 2rem;
}
.breadcrumb-label {
max-width: 170px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
}
}
@media screen and (max-width: 1446px) {
.app-breadcrumb {
.breadcrumb-box {
padding: 0px;
}
.navbar-brand {
display: flex;
justify-content: center;
align-items: center;
background-color: #f8f8f8;
font-size: 14px;
font-weight: 400;
padding: 0.5em 0.5em;
margin-left: 2rem;
}
.breadcrumb-label {
max-width: 130px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
}
}
@media screen and (max-width: 1280px) {
.app-breadcrumb {
.breadcrumb-box {
padding: 0px;
}
.navbar-brand {
display: flex;
justify-content: center;
align-items: center;
background-color: #f8f8f8;
font-size: 14px;
font-weight: 400;
padding: 0.5em 0.5em;
margin-left: 2rem;
}
.breadcrumb-label {
max-width: 90px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
}
}
@media screen and (max-width: 570px) {
.app-breadcrumb {
.breadcrumb-box {
padding: 0px;
}
.navbar-brand {
display: flex;
justify-content: center;
align-items: center;
background-color: #f8f8f8;
font-size: 12px;
font-weight: 400;
padding: 0.5em 0.5em;
margin-left: 2rem;
}
.breadcrumb-label {
max-width: 70px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
}
}