Skip to content

Commit 716d1e2

Browse files
authored
Merge pull request #15 from DeveloperParana/copilot/fix-static-page-responsive-layout
2 parents 66b57bc + cb7992d commit 716d1e2

1 file changed

Lines changed: 41 additions & 4 deletions

File tree

index.html

Lines changed: 41 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -262,11 +262,12 @@
262262
}
263263

264264
@media (max-width: 768px) {
265-
.talk-item {
266-
grid-template-columns: 1fr;
265+
body {
266+
padding: 1rem;
267267
}
268-
.content {
269-
grid-template-columns: 1fr;
268+
269+
header {
270+
margin-bottom: 1.5rem;
270271
}
271272

272273
h1 {
@@ -276,6 +277,42 @@
276277
.subtitle {
277278
font-size: 1rem;
278279
}
280+
281+
.content {
282+
grid-template-columns: 1fr;
283+
padding: 1.5rem;
284+
gap: 2rem;
285+
}
286+
287+
.form-section {
288+
gap: 1.25rem;
289+
}
290+
291+
.button-group {
292+
flex-direction: column;
293+
gap: 0.75rem;
294+
}
295+
296+
button {
297+
width: 100%;
298+
}
299+
300+
.talk-item {
301+
grid-template-columns: 1fr;
302+
gap: 0.75rem;
303+
}
304+
305+
.image-preview {
306+
min-height: 40vh;
307+
}
308+
309+
.image-preview img {
310+
max-height: 50vh;
311+
}
312+
313+
input, select, textarea {
314+
font-size: 16px; /* Prevents zoom on iOS */
315+
}
279316
}
280317
</style>
281318
</head>

0 commit comments

Comments
 (0)