mirror of
https://github.com/owncast/owncast.git
synced 2025-01-05 16:17:31 +03:00
29 lines
No EOL
529 B
SCSS
29 lines
No EOL
529 B
SCSS
.logo {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
overflow: hidden;
|
|
width: 120px;
|
|
height: 120px;
|
|
border-radius: 50%;
|
|
border-width: 3px;
|
|
border-style: solid;
|
|
border-color: var(--theme-primary-color);
|
|
background-color: var(--theme-background-secondary);
|
|
}
|
|
|
|
.container {
|
|
width: 90%;
|
|
height: 90%;
|
|
border-radius: 50%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.image {
|
|
width: 100%;
|
|
height: 100%;
|
|
background-size: cover;
|
|
background-position: center;
|
|
overflow: hidden;
|
|
} |