From 0088235b3f2bc30f108d1a05b388ed7bfc25d1fa Mon Sep 17 00:00:00 2001 From: abh1sh3kk Date: Fri, 31 Mar 2023 23:56:50 +0545 Subject: [PATCH] Made template management page a bit responsive --- client/src/styles/TemplateManagement.css | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/client/src/styles/TemplateManagement.css b/client/src/styles/TemplateManagement.css index b14dafe..b98caf1 100644 --- a/client/src/styles/TemplateManagement.css +++ b/client/src/styles/TemplateManagement.css @@ -7,13 +7,12 @@ } .template-list { - max-height: 500px; - overflow: scroll; - + max-height: 500px; + overflow: scroll; } .template-list-container > h2 { - margin-bottom: 0.5rem; + margin-bottom: 0.5rem; } .template-page { @@ -29,3 +28,9 @@ .template-list > li { margin-block: 0.5rem; } + +@media screen and (max-width: 860px) { + .template-page { + flex-direction: column; + } +}