31 lines
457 B
CSS
31 lines
457 B
CSS
.container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
.captionBold {
|
|
font-weight: 600;
|
|
}
|
|
.counterContainer {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
align-items: center;
|
|
gap: 20px;
|
|
}
|
|
.counterBtn {
|
|
width: 40px;
|
|
height: 40px;
|
|
}
|
|
|
|
.childInfoContainer {
|
|
display: grid;
|
|
gap: var(--Spacing-x2);
|
|
grid-template-columns: 1fr 2fr;
|
|
}
|
|
|
|
.error {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--Spacing-x1);
|
|
}
|