Skip to content

Commit

Permalink
small updates
Browse files Browse the repository at this point in the history
  • Loading branch information
noahlitvin committed Nov 5, 2024
1 parent 6c76347 commit e76f100
Show file tree
Hide file tree
Showing 3 changed files with 181 additions and 554 deletions.
6 changes: 6 additions & 0 deletions packages/website/src/features/HomePage/HomePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,12 @@ const HomePageStyles = createGlobalStyle`
object-position: 0% center;
}
}
&:nth-child(4) {
@media (max-width: 768px) {
object-position: 10% center;
}
}
}
.section {
Expand Down
8 changes: 7 additions & 1 deletion packages/website/src/features/Packages/ContractsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,13 @@ export const ContractsTable: React.FC<{
header.column.columnDef.header,
header.getContext()
)}
<CaretSortIcon className="ml-2 h-4 w-4" />
<CaretSortIcon
className={`${
header.column.columnDef.accessorKey === 'highlight'
? 'h-4 w-4'
: 'ml-2 h-4 w-4'
}`}
/>
</Button>
</TableHead>
);
Expand Down
Loading

0 comments on commit e76f100

Please sign in to comment.