pennions / JESS

Stylesheet influenced by Pico CSS and Fluent UI from microsoft
https://pennions.github.io/JESS
MIT License
2 stars 0 forks source link

main element with two sections and class 'two-columns' has a too high gap. #9

Closed jelmerveen closed 1 year ago

jelmerveen commented 1 year ago

example:

<main class="two-columns">
      <section><article>A</article></section>
      <section><article>B</article></section>
</main>
jelmerveen commented 1 year ago

using utility classes fixes this.

    <main class="two-columns">
      <section class="p-0"><article>A</article></section>
      <section class="p-0"><article>B</article></section>
    </main>