Skip to content

Commit bf51279

Browse files
committed
Fix preview card width
1 parent 5a0feda commit bf51279

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib/ResourceSelector.svelte

+2-2
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@
317317
<FormGroup>
318318
{#each Object.keys(resourcesByType[resourceType]) as key}
319319
<Label style="width: 100%">
320-
<Card style="width: 100%">
320+
<Card style="width: 100%; max-width: 100%">
321321
<CardHeader>
322322
<span style="font-size:small">{resourceType}</span>
323323
</CardHeader>
@@ -373,7 +373,7 @@
373373
{#if injectedResources[section].resources}
374374
{#each Object.keys(injectedResources[section].resources) as key}
375375
<Label style="width: 100%">
376-
<Card style="width: 100%">
376+
<Card style="width: 100%; max-width: 100%">
377377
<CardHeader>
378378
<span style="font-size:small">{section}</span>
379379
</CardHeader>

0 commit comments

Comments
 (0)