mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
26 lines
477 B
SCSS
26 lines
477 B
SCSS
.skip-button {
|
|
display: flex;
|
|
align-items: center;
|
|
position: fixed;
|
|
bottom: 8rem;
|
|
right: 6rem;
|
|
z-index: 10000;
|
|
padding: 12px 20px;
|
|
background-color: #303030;
|
|
color: rgba(255, 255, 255, 0.87);
|
|
border: none;
|
|
border-radius: 0.2em;
|
|
font-weight: bold;
|
|
font-size: 1.2em;
|
|
transition: opacity 200ms ease-out;
|
|
gap: 3px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.no-transition {
|
|
transition: none;
|
|
}
|
|
|
|
.skip-button-hidden {
|
|
opacity: 0;
|
|
}
|