Skip to content

Commit

Permalink
fix(build): if u fail ur gay
Browse files Browse the repository at this point in the history
  • Loading branch information
DuckySoLucky committed Jun 25, 2024
1 parent 9cfb8eb commit 387cbbd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/lib/sections/stats/Inventory.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
});
</script>

<Tabs.Root bind:value={$openTab} class="@container relative mb-0 rounded-lg bg-background/30 p-5">
<Tabs.Root bind:value={$openTab} class="relative mb-0 rounded-lg bg-background/30 p-5 @container">
<Tabs.List class="flex items-center gap-3 border-b border-icon px-4">
{#each tabs as tab}
{@const isActive = $openTab === tab.id}
Expand All @@ -101,7 +101,7 @@
{#each tabs as tab}
<Tabs.Content value={tab.id} asChild let:builder>
{#if $openTab === tab.id}
<div use:builder.action {...builder} class="@md:gap-1.5 @xl:gap-2 grid grid-cols-[repeat(9,minmax(1.875rem,4.875rem))] place-content-center gap-1 pt-5">
<div use:builder.action {...builder} class="grid grid-cols-[repeat(9,minmax(1.875rem,4.875rem))] place-content-center gap-1 pt-5 @md:gap-1.5 @xl:gap-2">
{#each tab.items as item, index}
{#if tab.hr === index}
<hr class="col-start-1 col-end-10 h-4 border-0" />
Expand Down
2 changes: 1 addition & 1 deletion tailwind.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,6 @@ export default {
{ values: theme("textShadow") }
);
}),
require('@tailwindcss/container-queries'),
require("@tailwindcss/container-queries")
]
} satisfies Config;

0 comments on commit 387cbbd

Please sign in to comment.