14 lines
233 B
CSS
14 lines
233 B
CSS
.counterContainer {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
align-items: center;
|
|
gap: 20px;
|
|
}
|
|
.counterBtn {
|
|
width: 40px;
|
|
height: 40px;
|
|
}
|
|
.counterBtn:not([disabled]) {
|
|
box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.1);
|
|
}
|