Skip to content

Commit 5e5dfd7

Browse files
committed
Fixed spacing issue with grid items
1 parent 06937b6 commit 5e5dfd7

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

assets/css/bpd.css

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,7 @@ ul.speaking-list {
505505
.footer-grid {
506506
display: grid;
507507
grid-template-columns: repeat(3, 1fr);
508-
gap: 60px;
508+
gap: 50px;
509509
}
510510

511511
.footer-col {
@@ -542,3 +542,21 @@ ul.speaking-list {
542542
font-size: 0.875em;
543543
color: #555;
544544
}
545+
@media (max-width: 768px) {
546+
.footer-grid {
547+
grid-template-columns: 1fr;
548+
gap: 30px;
549+
}
550+
551+
.footer-col h3 {
552+
font-size: 1.5em;
553+
}
554+
555+
.footer-col ul li a {
556+
font-size: 14px;
557+
}
558+
559+
.footer-bottom {
560+
font-size: 0.75em;
561+
}
562+
}

0 commit comments

Comments
 (0)