mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-31 17:31:27 +00:00
23 lines
470 B
SCSS
23 lines
470 B
SCSS
// The gerbil is tied to subscriptions currently, but this style should move to it's own file once
|
|
// the gerbil is added in more places with different layouts
|
|
.subscriptions__gerbil {
|
|
height: 250px;
|
|
width: 210px;
|
|
}
|
|
|
|
.subscriptions__suggested {
|
|
animation: expand 0.2s;
|
|
width: 100%;
|
|
margin-top: $spacing-vertical;
|
|
}
|
|
|
|
@-webkit-keyframes expand {
|
|
0% {
|
|
margin-top: 200px;
|
|
opacity: 0;
|
|
}
|
|
100% {
|
|
margin-top: $spacing-vertical;
|
|
opacity: 1;
|
|
}
|
|
}
|