lbry-desktop/ui/scss/component/_notification.scss

54 lines
845 B
SCSS

.notifications__empty {
background-color: var(--color-card-background);
padding: var(--spacing-l);
}
.notification_list {
> * {
border-bottom: 1px solid var(--color-border);
&:last-of-type {
border-bottom: none;
}
}
}
.notification__icon {
.icon__wrapper {
margin-right: var(--spacing-m);
}
}
.notification__wrapper {
width: 100%;
display: flex;
.channel-thumbnail {
@include handleChannelGif(3rem);
}
}
.notification__content {
display: flex;
flex: 1;
justify-content: space-between;
align-items: center;
}
.notification__title {
font-size: var(--font-small);
font-weight: bold;
color: var(--color-text);
margin-bottom: var(--spacing-s);
}
.notification__text {
font-size: var(--font-body);
}
.notification__time {
@extend .help;
margin-bottom: 0;
margin-top: 0;
}