Commit 225523e 1 parent 2a76750 commit 225523e Copy full SHA for 225523e
File tree 3 files changed +5
-7
lines changed
electron/renderer/components
3 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -78,9 +78,8 @@ const GameHand: React.FC<GameHandProps> = (props: GameHandProps): ReactNode => {
78
78
width : '250px' ,
79
79
height : '100%' ,
80
80
padding : '5px' ,
81
- border : '1px solid' ,
82
- borderColor : euiTheme . border . color ,
83
- borderRadius : '5px' ,
81
+ border : euiTheme . border . thin ,
82
+ borderRadius : euiTheme . border . radius . small ,
84
83
} }
85
84
>
86
85
< div css = { { userSelect : 'none' } } >
Original file line number Diff line number Diff line change @@ -134,9 +134,8 @@ const GameTimeDisplay: React.FC<GameTimeDisplayProps> = (
134
134
position : 'relative' ,
135
135
width : '100%' ,
136
136
height : '25px' ,
137
- border : '1px solid' ,
138
- borderColor : euiTheme . border . color ,
139
- borderRadius : '5px' ,
137
+ border : euiTheme . border . thin ,
138
+ borderRadius : euiTheme . border . radius . small ,
140
139
userSelect : 'none' ,
141
140
} }
142
141
>
Original file line number Diff line number Diff line change @@ -294,7 +294,7 @@ export const GridItem: React.FC<GridItemProps> = memo(
294
294
cursor : 'nwse-resize' ,
295
295
touchAction : 'none' ,
296
296
backgroundColor : euiTheme . colors . mediumShade ,
297
- borderRadius : 5 ,
297
+ borderRadius : euiTheme . border . radius . medium ,
298
298
} ,
299
299
} ) ;
300
300
} , [ euiTheme ] ) ;
You can’t perform that action at this time.
0 commit comments