18 lines
404 B
CSS
18 lines
404 B
CSS
.container {
|
|
align-items: center;
|
|
background-color: var(--some-grey-color, #f2f2f2);
|
|
border-radius: var(--Corner-radius-Medium);
|
|
display: flex;
|
|
gap: var(--Spacing-x3);
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
margin-bottom: var(--Spacing-x-half);
|
|
min-height: 250px;
|
|
padding: var(--Spacing-x0) var(--Spacing-x3);
|
|
}
|
|
|
|
.grayTitle {
|
|
color: var(--UI-Grey-60);
|
|
display: block;
|
|
}
|