mirror of
https://github.com/LukeHagar/website.git
synced 2025-12-09 12:57:48 +00:00
Fix tutorial card spacing mobile
This commit is contained in:
@@ -70,7 +70,7 @@
|
|||||||
{#each data.tutorials as category}
|
{#each data.tutorials as category}
|
||||||
<section class="flex flex-col gap-6">
|
<section class="flex flex-col gap-6">
|
||||||
<h2 class="text-micro uppercase">{category.title}</h2>
|
<h2 class="text-micro uppercase">{category.title}</h2>
|
||||||
<ul class="web-grid-row-4 web-grid-row-4-mobile-2">
|
<ul class="web-grid-row-4 web-grid-row-4-mobile-1 ">
|
||||||
{#each category.tutorials as tutorial}
|
{#each category.tutorials as tutorial}
|
||||||
<li>
|
<li>
|
||||||
{#if tutorial.draft === true}
|
{#if tutorial.draft === true}
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
@use '../abstract' as *;
|
@use '../abstract' as *;
|
||||||
|
|
||||||
.#{$p}-grid-row-4 {
|
.#{$p}-grid-row-4 {
|
||||||
--p-gap: #{pxToRem(32)};
|
--p-gap: #{pxToRem(20)};
|
||||||
|
|
||||||
display:grid; gap:var(--p-gap);
|
display:grid; gap:var(--p-gap);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user