11 lines
177 B
SCSS
11 lines
177 B
SCSS
|
|
.notification-item {
|
||
|
|
transition: all 0.2s ease;
|
||
|
|
}
|
||
|
|
.notification-item:hover {
|
||
|
|
background-color: rgba(0,0,0,0.05);
|
||
|
|
}
|
||
|
|
.notification-time {
|
||
|
|
font-size: 0.8rem;
|
||
|
|
color: #6c757d;
|
||
|
|
}
|