diff --git a/code.md b/code.md index 0e9a9bb7..7f46e7bc 100644 --- a/code.md +++ b/code.md @@ -125,6 +125,33 @@ } } + +.inclusions { + display: grid; + justify-content: center; + gap: 30px; + padding: 0; + grid-template-columns: repeat(4, 1fr); + margin: 100px 0; + + @include large-break { + grid-template-columns: repeat(2, 1fr); + } + + @include mid-break { + margin: 60px 0; + } + + @include extra-small-break { + grid-template-columns: 1fr; + } +} + +.icon { + margin-bottom: 16px; +} + + :global([data-theme='dark']) { .footer { background-color: var(--theme-elevation-50);