Skip to content

Commit

Permalink
feat(ref: #118): add gap
Browse files Browse the repository at this point in the history
  • Loading branch information
andriikamaldinov1 committed Oct 25, 2024
1 parent ad91d6a commit 7d91285
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/app/cards/cards.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
<div class="ml-4 flex items-center text-title text-dark uppercase tracking-[.25em]">
{{ card.header }}
</div>
<div class="flex gap-30px mob:flex-col mob:gap-15px scroll-mt-[185px]" [id]="card.anchor">
<div
class="flex justify-between gap-30px mob:flex-col mob:gap-15px scroll-mt-[185px]"
[id]="card.anchor">
<div class="flex-[55%] rounded-10px bg-full-white p-15px">
<div class="flex items-start gap-2.5 mb-5">
<img
Expand All @@ -24,7 +26,7 @@
<div class="flex flex-col mt-2.5 gap-2.5">
@if (card.customCodeProvider) {
<pre class="flex text-span">
<code class="bg-white w-full h-fit pl-15px rounded-10px border-none overflow-hidden whitespace-pre-line" language="html" [highlight]="card.customCodeProvider"></code>
<code class="bg-white w-full h-fit pl-15px rounded-10px border-none overflow-hidden whitespace-pre-wrap" language="html" [highlight]="card.customCodeProvider"></code>
<img height="18" width="13" [ngSrc]="'input-vector' | asset : openSourceCardsPath" class="relative right-5 self-center" alt="Input vector" />
</pre>
}
Expand Down

0 comments on commit 7d91285

Please sign in to comment.