small style fix

This commit is contained in:
Viktor Rådberg
2023-12-24 14:42:15 +01:00
parent 3e2deca2f0
commit bdbea848d3
2 changed files with 4 additions and 1 deletions

View File

@@ -14,6 +14,9 @@ const ExtraCounterContainer = styled.div`
`; `;
export const StyledExtraCounterButton = styled.button` export const StyledExtraCounterButton = styled.button`
display: flex;
justify-content: center;
align-items: center;
position: relative; position: relative;
flex-grow: 1; flex-grow: 1;
border: none; border: none;

View File

@@ -49,7 +49,7 @@ export const ExtraCountersGrid = styled.div<{ $rotation: Rotation }>`
height: 100%; height: 100%;
width: auto; width: auto;
bottom: auto; bottom: auto;
right: -6px; right: 0;
`; `;
} }
}} }}