fix: styles

This commit is contained in:
Cory Dransfeldt 2024-03-14 12:51:37 -07:00
parent 738db20dd8
commit b84bb155f5
No known key found for this signature in database
3 changed files with 8 additions and 4 deletions

View file

@ -7,7 +7,7 @@
<style>{{ css }}</style>
{% endif %}
{% assign media = data | normalizeMedia %}
<h2 id="{{ title | downcase }}" class="flex--centered">
<h2 id="{{ title | downcase }}" class="media__grid--header flex--centered">
{% tablericon icon title %}
{{ title }}
</h2>

View file

@ -3,10 +3,14 @@
--grid-vertical: repeat(3,minmax(0,1fr));
}
h2 {
.media__grid--header {
margin: var(--sizing-3xl) 0 var(--sizing-lg);
}
.media__grid--header:first-of-type {
margin-top: 0;
}
.media__grid {
display: grid;
gap: var(--sizing-sm);

View file

@ -14,11 +14,11 @@
width: var(--sizing-base);
}
h2 {
.media__grid--header {
margin: var(--sizing-3xl) 0 var(--sizing-lg);
}
h2:first-of-type {
.media__grid--header:first-of-type {
margin-top: 0;
}