mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-23 17:47:24 +00:00
8 lines
181 B
SCSS
8 lines
181 B
SCSS
@mixin placeholder {
|
|
animation: pulse 2s infinite ease-in-out;
|
|
background-color: $lbry-gray-2;
|
|
|
|
html[data-mode='dark'] & {
|
|
background-color: rgba($lbry-white, 0.1);
|
|
}
|
|
}
|