Skip to content

Commit 23c316d

Browse files
authored
fix: timer design (#1466)
1 parent 54229f0 commit 23c316d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

frontend/src/components/Board/Timer/index.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ const Timer: React.FC<TimerProps> = ({ boardId, isAdmin, emitEvent, listenEvent
4242

4343
const buildTimeButton = (action: string, onClick: any) => (
4444
<Button
45+
css={{ height: '$10' }}
4546
disabled={!isAdmin || isTimerRunning() || isTimerPaused()}
4647
onClick={onClick}
4748
size="xxs"

frontend/src/components/Board/Timer/styles.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ const TimerContainer = styled('div', {
2525
justifySelf: 'start',
2626
// position: 'absolute',
2727
width: '$$w',
28+
zIndex: -1,
2829
},
2930
variants: {
3031
variant: {
@@ -67,7 +68,6 @@ const ControlPanel = styled('div', {
6768
display: 'flex',
6869
gap: '$4',
6970
gridArea: 'buttons',
70-
marginRight: '$10',
7171
});
7272

7373
const TimePanel = styled('div', {

0 commit comments

Comments
 (0)