66 lines
1.0 KiB
SCSS
Executable File
66 lines
1.0 KiB
SCSS
Executable File
@use "../variables" as *;
|
|
|
|
html .topbar {
|
|
transition: background-color 0.5s ease; /* Smooth transition for background color */
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 9;
|
|
height: $header-height;
|
|
|
|
.notification-badge {
|
|
.mat-badge-content {
|
|
left: 80%;
|
|
bottom: 85%;
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.topbar-dd {
|
|
min-width: 360px !important;
|
|
}
|
|
|
|
.apps-dd {
|
|
min-width: 830px !important;
|
|
overflow: unset !important;
|
|
|
|
.mat-mdc-menu-content {
|
|
padding: 0;
|
|
}
|
|
}
|
|
|
|
.text-hover-primary:hover {
|
|
.hover-text {
|
|
color: $primary;
|
|
}
|
|
}
|
|
|
|
.upgrade-bg {
|
|
position: absolute;
|
|
top: 0px;
|
|
right: 0px;
|
|
height: 100%;
|
|
}
|
|
|
|
.object-cover {
|
|
object-fit: cover;
|
|
}
|
|
|
|
.profile-dd {
|
|
margin-top: -5px;
|
|
margin-left: -5px;
|
|
}
|
|
|
|
.dark-theme {
|
|
.topbar {
|
|
.mat-mdc-icon-button {
|
|
color: $dark-text-secondary !important;
|
|
}
|
|
|
|
.mdc-button {
|
|
--mat-button-text-label-text-color: $dark-text-secondary !important;
|
|
}
|
|
}
|
|
}
|