arcadiasuite/plus/public/assets/scss/custom/structure/_page-head.scss

70 lines
1.2 KiB
SCSS

//
// page-head.scss
//
.page-title-box {
.page-title {
font-size: 18px;
margin: 0;
line-height: 60px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
// color: $page-title-color;
}
.breadcrumb {
padding: 0;
}
}
.page-title-box-sm {
.page-title {
line-height: 1 !important;
margin-bottom: 25px;
}
.page-title-right {
float: right;
margin-top: 0;
}
.breadcrumb {
padding-top: 0;
margin-top: -3px !important;
}
}
.text-title {
color: var(--#{$prefix}secondary-color);
&:hover {
color: var(--#{$prefix}tertiary-color);
}
}
@include media-breakpoint-down(md) {
.page-title-box {
.page-title {
display: block;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
line-height: 70px;
}
.breadcrumb {
display: none;
}
.page-title-right {
display: none;
}
}
}
@media (max-width: 419px) {
.page-title-box .breadcrumb {
display: none;
}
}