mirror of
https://github.com/billsonnn/nitro-react.git
synced 2025-01-31 18:32:36 +01:00
20 lines
458 B
SCSS
20 lines
458 B
SCSS
.layout-grid-item {
|
|
height: var(--nitro-grid-column-min-height, 45px);
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-color: $grid-bg-color;
|
|
|
|
&.active {
|
|
border-color: $grid-active-border-color !important;
|
|
background-color: $grid-active-bg-color !important;
|
|
}
|
|
|
|
&.unseen {
|
|
background-color: rgba($success, 0.4);
|
|
}
|
|
|
|
.avatar-image {
|
|
background-position-y: -35px;
|
|
}
|
|
}
|