diff --git a/src/routes/game/[id]/+page.svelte b/src/routes/game/[id]/+page.svelte index 49017cc..5f21e04 100644 --- a/src/routes/game/[id]/+page.svelte +++ b/src/routes/game/[id]/+page.svelte @@ -92,13 +92,13 @@ {#if firstParagraphEnd > 0} -
+
{@html game?.description?.substring(0, firstParagraphEnd)}
{#if game?.description?.substring(firstParagraphEnd + 1) !== ''}
{#if seeMore} -
+
{@html game?.description?.substring(firstParagraphEnd + 1)}
{/if} @@ -181,9 +181,15 @@ margin: 1rem; } + .overflow-description { + display: grid; + gap: 1.5rem; + } + .with-icon { - display: flex; - flex-wrap: wrap; + display: grid; + grid-template-columns: repeat(2, auto); + /* flex-wrap: wrap; */ place-items: center; gap: 1rem; }