mirror of
https://github.com/owncast/owncast.git
synced 2025-01-05 08:07:58 +03:00
28 lines
506 B
SCSS
28 lines
506 B
SCSS
.root {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: max-content;
|
|
svg {
|
|
width: clamp(2.5rem, 8vw, 50px);
|
|
height: clamp(2.5rem, 8vw, 50px);
|
|
}
|
|
}
|
|
|
|
.contrast {
|
|
padding: 5px;
|
|
border-radius: 50%;
|
|
background-color: var(--color-owncast-gray-100);
|
|
svg {
|
|
width: clamp(2rem, 7vw, 40px);
|
|
height: clamp(2rem, 7vw, 40px);
|
|
}
|
|
}
|
|
|
|
.simple {
|
|
background-color: transparent;
|
|
svg {
|
|
width: clamp(2.5rem, 8vw, 50px);
|
|
height: clamp(2.5rem, 8vw, 50px);
|
|
}
|
|
}
|