Add responsive design for order section in CSS

This commit is contained in:
vista-man
2025-02-27 09:29:51 +01:00
parent 82c987d891
commit 2cd7054dd0

View File

@@ -43,3 +43,10 @@ h1 {
.order li { .order li {
margin: 5px 0; margin: 5px 0;
} }
/* Responsive design */
@media (max-width: 768px) {
.order {
width: 100%; /* Full width for smaller screens */
}
}