lbry-desktop/ui/scss/component/notifications-blocked.scss
Dan Peterson 704452732a
Add hints if an error occurs subscribing to notifications (#143)
* Add hints if an error occurs subscribing to notifications

* Update import (type/linting issue)

* disable optimization for debugging

* Revert "disable optimization for debugging"

This reverts commit 5b837f94e97b7488a7dc565e7f74d399e19c286f.

* improve detection of notification support + improve ux / ui surrounding that

* update translations
2021-11-01 14:51:23 -04:00

23 lines
453 B
SCSS

.notificationsBlocked {
display: flex;
align-items: center;
background-color: var(--color-placeholder-background);
padding: var(--spacing-m);
}
.notificationsBlocked__icon {
flex-shrink: 0;
margin-right: var(--spacing-m);
}
.notificationsBlocked__subText {
display: inline-block;
color: var(--color-text-subtitle);
font-size: var(--font-small);
}
.notificationsBlocked__subTextList {
li {
margin-left: var(--spacing-m);
}
}