webapp/src/components/NotificationsPanel/NotificationView/NotificationView.module.scss
Kosta 85e8533931
dates in notifications, lots of minor fixes (#271)
* dates in notifications, lots of minor fixes
Co-authored-by: Igor Lobanov <igor.lobanov@onetwotrip.com>
2023-10-18 13:56:41 +03:00

45 lines
757 B
SCSS

.NotificationView {
display: flex;
align-items: center;
height: 72px;
margin-left: -16px;
border-radius: 16px;
padding: 16px;
background-color: var(--yellow-50);
// TODO: check markup
font-size: 15px;
// font-weight: 700;
line-height: 20px;
cursor: pointer;
transition: background-color 100ms;
&.seen {
background-color: transparent;
}
&:hover {
background-color: var(--gray-100);
}
a,
a:visited {
padding-bottom: 0 !important;
border-bottom: none !important;
font-weight: 700;
}
}
.userpic {
margin-right: 15px;
}
.timeContainer {
margin-left: auto;
padding-left: 16px;
color: var(--black-400);
font-size: 12px;
font-weight: 500;
line-height: 16px;
align-self: flex-start;
}