Skip to content

Commit

Permalink
style: fix tailwind support rule
Browse files Browse the repository at this point in the history
  • Loading branch information
salimi-my committed May 23, 2024
1 parent a645c34 commit 80cab5d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/admin-panel/footer.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export function Footer() {
return (
<div className='supports-backdrop-blur:bg-background/60 z-20 w-full shadow bg-background/95 backdrop-blur'>
<div className='supports-[backdrop-filter]:bg-background/60 z-20 w-full shadow bg-background/95 backdrop-blur'>
<div className='mx-8 flex h-14 items-center'>
<small className='text-muted-foreground'>
Created by{' '}
Expand Down
2 changes: 1 addition & 1 deletion components/admin-panel/navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ interface NavbarProps {

export function Navbar({ title }: NavbarProps) {
return (
<header className='z-10 supports-backdrop-blur:bg-background/60 sticky top-0 w-full shadow dark:shadow-secondary bg-background/95 backdrop-blur'>
<header className='z-10 supports-[backdrop-filter]:bg-background/60 sticky top-0 w-full shadow dark:shadow-secondary bg-background/95 backdrop-blur'>
<div className='mx-4 sm:mx-8 flex h-14 items-center'>
<div className='flex items-center space-x-4 lg:space-x-0'>
<SheetMenu />
Expand Down

0 comments on commit 80cab5d

Please sign in to comment.