mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
refactor(web): prefer non-bracket syntax in tailwind
This commit is contained in:
parent
79cedfebb1
commit
6942dad482
3 changed files with 3 additions and 3 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue