We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4538a76 commit 4b1a52cCopy full SHA for 4b1a52c
1 file changed
src/layouts/sections/ToolsSection.astro
@@ -169,6 +169,7 @@ const { class: className } = Astro.props;
169
font-size: 1.125rem;
170
171
svg {
172
+ margin-block-start: var(--size-gutter-big);
173
width: 4rem;
174
height: auto;
175
fill: var(--color-secondary);
@@ -181,6 +182,27 @@ const { class: className } = Astro.props;
181
182
}
183
184
@media screen and (max-width: 800px) {
185
+ section {
186
+ grid-template-areas:
187
+ "header"
188
+ "main"
189
+ "tools";
190
+ grid-template-columns: 1fr;
191
+ }
192
+
193
+ .tools-content {
194
+ svg {
195
+ align-self: center;
196
+ rotate: 0deg;
197
198
199
200
+ .tools-grid {
201
+ grid-template-columns: repeat(4, 1fr);
202
203
204
205
+ @media screen and (max-width: 600px) {
206
.tools-grid {
207
grid-template-columns: repeat(2, 1fr);
208
0 commit comments