1
0
mirror of https://github.com/billsonnn/nitro-react.git synced 2025-03-02 06:02:36 +01:00

29 lines
595 B
SCSS
Raw Normal View History

2021-12-13 00:43:53 -05:00
.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;
}
2022-01-11 23:01:59 -05:00
&.disabled {
cursor: not-allowed;
img {
opacity: .5;
filter: grayscale(1);
}
}
2021-12-13 00:43:53 -05:00
&.unseen {
background-color: rgba($success, 0.4);
}
2022-01-03 00:10:55 -05:00
.avatar-image {
background-position-y: -35px;
}
2021-12-13 00:43:53 -05:00
}