Skip to content

Commit

Permalink
fix: work around dynamic css tailwind styles issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Robin Bryce committed Sep 1, 2024
1 parent 8b34a57 commit 371088f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ function routeGenerator(route: string): string {
{/if}
</FabricatorTabs>
</div>
<div class="flex-grow-0 flex-shrink-0 basis-full md:basis-1/3">
<div class="flex-grow-0 flex-shrink-0 basis-full md:basis-1/3 mt-4">
<FabricatorArtefactDeployer>
<div slot="top">
<BiomesPreviewPane image={{src: blueprintImgSrc0, alt: "Biomes preview image"}} meta={meta}/>
Expand Down
1 change: 0 additions & 1 deletion apps/gav0/src/lib/components/organisms/GAVBar.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@
<slot />
</svelte:fragment>
</AppBar>

<style>
.app-bar {
display: flex;
Expand Down
3 changes: 2 additions & 1 deletion apps/gav0/src/lib/components/organisms/ImagePrompt.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ export let suggestion: string;
export let promptPos: "top" | "bottom" = "top";
// --- component state properties
$: gridStyles = `grid grid-cols-${stride} md:grid-cols-${strideWide} gap-4`
// $: gridStyles = `grid grid-cols-${stride} md:grid-cols-${strideWide} gap-4`
let gridStyles = `grid grid-cols-2 md:grid-cols-2 gap-4`
// --- svelte bound variables
// let instance = undefined
Expand Down

0 comments on commit 371088f

Please sign in to comment.