mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-23 17:47:24 +00:00
* fix: channel button color on dark mode * fix: disabled primary button in dark mode * fix: show pending publishes immediately * update lbry-redux * remove duplicate import * use lbry colors for 'new' badge * fix: don't filter transactions in recent transactions * fix: remove unread subscriptions on un-subscribe * handle edits and new files the same for pending publishes * don't loop over transactions if we don't have to * bump lbry-redux
21 lines
314 B
SCSS
21 lines
314 B
SCSS
.badge {
|
|
border-radius: 5px;
|
|
padding: 5px;
|
|
font-weight: 800;
|
|
font-size: 0.8em;
|
|
}
|
|
|
|
.badge--alert {
|
|
background-color: $lbry-red-3;
|
|
color: $lbry-white;
|
|
}
|
|
|
|
.badge--free {
|
|
background-color: $lbry-blue-2;
|
|
color: $lbry-blue-5;
|
|
}
|
|
|
|
.badge--cost {
|
|
background-color: $lbry-yellow-3;
|
|
color: $lbry-black;
|
|
}
|