From 2cd7054dd0b72b33e09f4a4e368a3f68f327e5e2 Mon Sep 17 00:00:00 2001 From: vista-man <524715@vistacollege.nl> Date: Thu, 27 Feb 2025 09:29:51 +0100 Subject: [PATCH] Add responsive design for order section in CSS --- website/orders.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/website/orders.css b/website/orders.css index 1f6a135..d1391f6 100644 --- a/website/orders.css +++ b/website/orders.css @@ -43,3 +43,10 @@ h1 { .order li { margin: 5px 0; } + +/* Responsive design */ +@media (max-width: 768px) { + .order { + width: 100%; /* Full width for smaller screens */ + } +}