You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
538 B
30 lines
538 B
.root { |
|
display: flex; |
|
flex-direction: column; |
|
align-items: center; |
|
justify-content: center; |
|
overflow: hidden; |
|
margin-right: 0.5rem; |
|
width: 96px; |
|
height: 96px; |
|
border-radius: 50%; |
|
border-width: 5px; |
|
border-style: solid; |
|
border-color: var(--theme-color-palette-0); |
|
background-color: var(--theme-color-palette-4); |
|
} |
|
|
|
.container { |
|
width: 90%; |
|
height: 90%; |
|
border-radius: 50%; |
|
overflow: hidden; |
|
} |
|
|
|
.image { |
|
width: 100%; |
|
height: 100%; |
|
object-fit: cover; |
|
object-position: center; |
|
overflow: hidden; |
|
}
|
|
|