style(project.scss): replace padding with margin in project-wrapper for better layout on smaller screens
All checks were successful
Build and Deploy Zola Website / build_and_deploy (push) Successful in 15s
Build Zola Website / build (pull_request) Successful in 26s

This commit is contained in:
2025-08-27 17:24:56 +02:00
parent 593d5a04b9
commit c4dba2d7c1

View File

@@ -67,13 +67,7 @@ code {
@media (max-width: 768px) { @media (max-width: 768px) {
.project-wrapper { .project-wrapper {
max-width: 100%; max-width: 100%;
padding: 1rem; margin: 0rem 1rem;
}
}
@media (max-width: 480px) {
.project-wrapper {
padding: 5px;
} }
} }