File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -141,7 +141,7 @@ const Days: React.FC<Props> = ({
141
141
142
142
const buttonCass = useCallback (
143
143
( day : number ) => {
144
- const baseClass = "flex items-center justify-center w-full h-12 lg:w-10 lg:h-10" ;
144
+ const baseClass = "flex items-center justify-center w-12 h-12 lg:w-10 lg:h-10" ;
145
145
return `${ baseClass } ${
146
146
! activeDateData ( day ) . active
147
147
? ` ${ hoverClassByDay ( day ) } `
@@ -192,7 +192,7 @@ const Days: React.FC<Props> = ({
192
192
< button
193
193
type = "button"
194
194
key = { index }
195
- className = "flex items-center justify-center text-gray-400 w-full h -12 lg:w-10 lg:h-10"
195
+ className = "flex items-center justify-center text-gray-400 h-12 w -12 lg:w-10 lg:h-10"
196
196
onClick = { ( ) => onClickPreviousDays ( item ) }
197
197
onMouseOver = { ( ) => {
198
198
hoverDay ( item , "previous" ) ;
@@ -222,7 +222,7 @@ const Days: React.FC<Props> = ({
222
222
< button
223
223
type = "button"
224
224
key = { index }
225
- className = "flex items-center justify-center text-gray-400 w-full h -12 lg:w-10 lg:h-10"
225
+ className = "flex items-center justify-center text-gray-400 h-12 w -12 lg:w-10 lg:h-10"
226
226
onClick = { ( ) => {
227
227
onClickNextDays ( item ) ;
228
228
} }
You can’t perform that action at this time.
0 commit comments