Refactor gallery styles for improved layout; adjust margin and padding for better responsiveness
All checks were successful
CI / build (push) Successful in 32s

This commit is contained in:
2025-07-23 20:55:01 +00:00
parent a58e31e9fc
commit 94599a7e94

View File

@@ -21,14 +21,14 @@ h1 {
#gallery {
display: grid;
grid-template-columns: repeat(auto-fit, 200px);
gap: 4px;
justify-items: center;
align-items: start;
/* max-width: 1400px; */
margin: auto 10rem;
padding: 0 1rem;
display: grid;
grid-template-columns: repeat(auto-fit, 200px);
gap: 4px;
/* justify-items: center; */
/* align-items: normal; */
/* max-width: 1400px; */
margin: auto auto;
padding: 40px;
}