owncast/web/components/ui/Logo/Logo.module.scss

31 lines
538 B
SCSS
Raw Normal View History

2022-07-03 13:34:55 +03:00
.root {
2022-05-18 01:28:56 +03:00
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
overflow: hidden;
2022-08-17 03:49:21 +03:00
margin-right: 0.5rem;
width: 96px;
height: 96px;
2022-05-17 07:44:09 +03:00
border-radius: 50%;
2022-08-17 03:49:21 +03:00
border-width: 5px;
2022-05-17 07:44:09 +03:00
border-style: solid;
border-color: var(--theme-color-palette-0);
background-color: var(--theme-color-palette-4);
2022-05-18 01:28:56 +03:00
}
2022-08-17 03:49:21 +03:00
.container {
2022-05-18 01:28:56 +03:00
width: 90%;
height: 90%;
border-radius: 50%;
overflow: hidden;
}
.image {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
2022-05-18 01:28:56 +03:00
overflow: hidden;
2022-07-03 13:34:55 +03:00
}