Skip to content

Commit

Permalink
fix: resolve tailwind eslint conflicty
Browse files Browse the repository at this point in the history
  • Loading branch information
ogous committed Sep 17, 2024
1 parent 4c27170 commit 46d3856
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion web/src/components/campaign/campaignItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export default function CampaignItem({ data }: CampaignItemProps) {

function CampaignItemWrapper({ children }: { children: React.ReactNode }) {
return (
<div className="shadow-9card flex flex-col gap-2 rounded-[3px] border-2 border-9black bg-9gray p-3">
<div className="flex flex-col gap-2 rounded-[3px] border-2 border-9black bg-9gray p-3 shadow-9card">
{children}
</div>
);
Expand Down
2 changes: 1 addition & 1 deletion web/src/components/cookieBanner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export default function CookieBanner() {
if (!showConsentDialog) return null;

return (
<div className="shadow-9cookieCard fixed inset-x-0 bottom-0 z-50 mx-auto my-10 flex max-w-max flex-col items-center justify-between gap-4 border border-9black bg-9yellow p-3 text-xs text-9black shadow sm:flex-row md:max-w-[480px] md:px-4">
<div className="fixed inset-x-0 bottom-0 z-50 mx-auto my-10 flex max-w-max flex-col items-center justify-between gap-4 border border-9black bg-9yellow p-3 text-xs text-9black shadow-9cookieCard sm:flex-row md:max-w-[480px] md:px-4">
<div className="text-center">
<Link target="_blank" href="https://static.9lives.so/privacy.pdf">
<p className="font-bold tracking-wide">We use cookies on our site.</p>
Expand Down

0 comments on commit 46d3856

Please sign in to comment.