18 lines
403 B
CSS
18 lines
403 B
CSS
.overlay-container {
|
|
background: var(--mud-palette-background);
|
|
width: 20rem;
|
|
height: 6rem;
|
|
padding: 0 1rem;
|
|
display: flex;
|
|
gap: .5rem;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
border-radius: 20px;
|
|
box-shadow: var(--custom-box-shadow);
|
|
}
|
|
|
|
.overlay-container > span {
|
|
text-align: center;
|
|
font-size: 20px;
|
|
font-weight: 600;
|
|
} |