mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-06-25 21:08:54 +08:00
25 lines
323 B
CSS
25 lines
323 B
CSS
.map-ui {
|
|
height: 100%;
|
|
}
|
|
|
|
.map-ui ul {
|
|
list-style: none;
|
|
color: var(--secondary-color);
|
|
padding: 0;
|
|
}
|
|
|
|
.map-ui .archive-link {
|
|
font-size: 1.25rem;
|
|
}
|
|
|
|
@media (max-width: 640px) {
|
|
.map-ui .block ul {
|
|
padding-inline-start: 6rem;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.map-ui > ul {
|
|
padding-inline-start: 0;
|
|
}
|
|
}
|