22 lines
307 B
CSS
22 lines
307 B
CSS
.container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.captionBold {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.childInfoContainer {
|
|
display: grid;
|
|
gap: var(--Spacing-x2);
|
|
grid-template-columns: 1fr 2fr;
|
|
}
|
|
|
|
.error {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--Spacing-x1);
|
|
}
|