Skip to content

Commit

Permalink
replace deprecated sizing classes
Browse files Browse the repository at this point in the history
  • Loading branch information
myrta2302 committed Nov 15, 2024
1 parent 544854d commit 87e4eac
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ export const PostLogo: Story = {
${['white', 'dark'].map(
color => html`
<div class="col bg-${color}">
${['big', 'huge', 'giant'].map(
${[25, 50, 75].map(
(height, i) => html`
<div class="h-${height} ${i === 0 ? 'my' : 'mb'}-mini">
<div class="h-${height} ${i === 0 ? 'my' : 'mb'}-8">
${meta.render?.({ ...context.args, url }, context)}
</div>
`,
Expand Down

0 comments on commit 87e4eac

Please sign in to comment.