16 lines
240 B
CSS
16 lines
240 B
CSS
.container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
.counterContainer {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
align-items: center;
|
|
gap: 20px;
|
|
}
|
|
.counterBtn {
|
|
width: 40px;
|
|
height: 40px;
|
|
}
|