3034f4ce6c
* bring in ody styles; modify; cleanup * workflow * workflow * v0.52.6-alpha.teststyles.1 * fix hook * v0.52.6-alpha.teststyles.2 * style fixes * fix pagination styling * v0.52.6-alpha.teststyles.3 * wallet icon was bad * restore deploy script * fixes * fix player close button * modal inputs * cleanup * cleanup * fix staked indicator * fix profile menu button skel delay * fix view-all-playlists hover * fix overlay buttons on collection page * fix header buttons
21 lines
446 B
SCSS
21 lines
446 B
SCSS
.status-bar {
|
|
background-color: var(--color-card-background);
|
|
color: #e0e0e0;
|
|
position: fixed;
|
|
left: 0;
|
|
bottom: 0;
|
|
font-size: var(--font-small);
|
|
padding-top: 2px;
|
|
padding-left: var(--spacing-xs);
|
|
padding-right: var(--spacing-xs);
|
|
border-top-right-radius: var(--spacing-xs);
|
|
opacity: 0;
|
|
transition: opacity 0.3s ease;
|
|
transition-delay: 400ms;
|
|
z-index: 10;
|
|
|
|
&.visible {
|
|
opacity: 1;
|
|
transition-delay: 0s;
|
|
}
|
|
}
|