Skip to content

Commit

Permalink
fix bullets size in the landing page for mobile (#174)
Browse files Browse the repository at this point in the history
  • Loading branch information
fbasso authored Oct 4, 2023
1 parent c7e0a0f commit 55773bc
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions demo/src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@
<h1 class="text-center mb-5 mx-sm-4">
<span><Svg svg={agnosUILogo} className="agnosui-logo" />gnosUI, where web widgets shine</span>
</h1>
<h2 class="text-center mx-sm-5 pe-5">Perfected open-source widget libraries with</h2>
<h2 class="text-center mx-sm-5 pe-5">Perfected open-source widget libraries</h2>
<ul class="au-landing-list">
<li class="d-flex align-items-center">
<li class="d-flex align-items-start">
<Svg svg={bullet} className="bullet me-3" />configurable Typescript widget factories
</li>
<li class="d-flex align-items-center">
<li class="d-flex align-items-start">
<Svg svg={bullet} className="bullet me-3" />headless wrappers for Angular, React and Svelte
</li>
<li class="d-flex align-items-center">
<li class="d-flex align-items-start">
<Svg svg={bullet} className="bullet me-3" />Bootstrap-compliant ready-to-use widgets for Angular, React and Svelte.
</li>
</ul>
Expand Down Expand Up @@ -120,8 +120,13 @@
list-style-type: none;
font-size: 1rem;
margin-bottom: 0.5rem;
:global(.bullet) {
width: 20px;
height: 20px;
min-width: 20px;
min-height: 20px;
margin-top: 3px;
color: $gradient-text-top;
}
}
Expand Down

0 comments on commit 55773bc

Please sign in to comment.