refactor(web): prefer non-bracket syntax in tailwind

This commit is contained in:
Collin Barrett 2025-07-02 17:59:52 -05:00
parent 79cedfebb1
commit 6942dad482
3 changed files with 3 additions and 3 deletions

View file

@ -127,7 +127,7 @@
}
.resizer {
@apply absolute right-0 top-0 h-full w-[5px] cursor-col-resize select-none touch-none;
@apply absolute right-0 top-0 h-full w-1.5 cursor-col-resize select-none touch-none;
}
.resizer.isResizing {

View file

@ -132,7 +132,7 @@ export function FilterListTable({
style={{ width: cell.column.getSize() }}
className="relative"
>
<div className="h-[42px] overflow-hidden">
<div className="h-11 overflow-hidden">
{flexRender(cell.column.columnDef.cell, cell.getContext())}
</div>
</TableCell>

View file

@ -11,7 +11,7 @@ export function Header() {
<div className="flex items-center">
<Link href="/" aria-label="Go to homepage">
<ThemeImage
className="sm:max-w-none sm:max-h-none max-w-[222px] max-h-[52px]"
className="sm:max-w-none sm:max-h-none max-w-56 max-h-14"
srcLight={LogoLight}
srcDark={logoDark}
alt="FilterLists logo"