File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 11.filter-dropdown {
22 position : absolute;
33 top : calc (100% + 8px );
4- right : 0 ;
54 min-width : 400px ;
65 max-width : 500px ;
76 max-height : 500px ;
1413 font-family : 'DM Sans' , sans-serif;
1514}
1615
16+ /* Add right: 0 only for screens greater than 700px */
17+ @media (min-width : 701px ) {
18+ .filter-dropdown {
19+ right : 0 ;
20+ }
21+ }
22+
1723.filter-dropdown-header {
1824 display : flex;
1925 justify-content : space-between;
Original file line number Diff line number Diff line change @@ -104,13 +104,13 @@ export const TableHeader: React.FC<TableHeaderProps> = ({
104104 style = { { marginRight : 8 , cursor : "pointer" } }
105105 />
106106 ) }
107- < span style = { { width : "16px" } } />
108107 < span
109108 style = { {
110109 display : "inline-flex" ,
111110 alignItems : "center" ,
112111 cursor : isColumnSortable ? "pointer" : "default" ,
113112 userSelect : "none" ,
113+ marginLeft : index === 0 ? "16px" : "0px" ,
114114 } }
115115 onClick = {
116116 isColumnSortable
You can’t perform that action at this time.
0 commit comments