Make links horizontal on desktop, vertical on mobile

This commit is contained in:
Russell Ballestrini 2025-10-15 07:58:12 -04:00
parent f81d0990b5
commit 05e706b35e

View file

@ -38,6 +38,11 @@
grid-template-columns: 1fr;
gap: 0.5rem;
}
@media (min-width: 768px) {
article nav ul {
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
}
</style>
</head>
<body>