This repository was archived by the owner on May 13, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +5
-9
lines changed
src/features/dashboard/components Expand file tree Collapse file tree 2 files changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -56,19 +56,16 @@ form {
5656 position : relative ;
5757 box-sizing : border-box ;
5858 margin : rem (1 ) 0 ;
59- & :focus-within {
60- border-color : var (--colors-blue400 );
61- }
6259 & :hover {
6360 border : 1px solid var (--colors-greyLight600 );
6461 }
62+ & :focus-within {
63+ border-color : var (--colors-blue500 );
64+ }
6565 button {
66- top : 0 ;
67- bottom : 0 ;
68- right : 0 ;
69- position : absolute ;
7066 border-top-left-radius : 0 ;
7167 border-bottom-left-radius : 0 ;
68+ height : rem (3 );
7269 }
7370 label {
7471 position : absolute ;
9895 }
9996 & :focus {
10097 outline-color : unset ;
101- outline : 1 px solid var ( --colors-blue500 ) ;
98+ outline : unset ;
10299 border-radius : rem (0.3 );
103100 & ~ label {
104101 color : var (--colors-blue400 );
Original file line number Diff line number Diff line change @@ -43,7 +43,6 @@ const Table = <T extends object>({
4343 return (
4444 < tr key = { row . getRowProps ( ) . key } { ...row . getRowProps ( ) } >
4545 { row . cells . map ( ( cell ) => {
46- console . log ( cell ) ;
4746 return (
4847 < td key = { cell . getCellProps ( ) . key } { ...cell . getCellProps ( ) } >
4948 { cell . render ( 'Cell' , getCustomCellProps ( cell ) ) }
You can’t perform that action at this time.
0 commit comments