From 62cf8a21d2bc4d2a3e4cddded83b7ef00ca4765e Mon Sep 17 00:00:00 2001 From: Sergio Valero Date: Wed, 16 Oct 2024 18:19:35 -0400 Subject: [PATCH] style: adjust vertical height in licence inventory and instructor assignment section --- .../Dashboard/DashboardPage/index.scss | 33 ++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) diff --git a/src/features/Dashboard/DashboardPage/index.scss b/src/features/Dashboard/DashboardPage/index.scss index 7aaaa6b5..3df3a8ba 100644 --- a/src/features/Dashboard/DashboardPage/index.scss +++ b/src/features/Dashboard/DashboardPage/index.scss @@ -10,10 +10,17 @@ background-color: $color-white; } -.license-section, +.license-section { + box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16); + border-radius: $border-radius-1; + min-height: 426px; + max-height: 10px; +} + .instructor-assign-section { box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16); border-radius: $border-radius-1; + min-height: 426px; } .schedule-section { @@ -23,3 +30,27 @@ .image-dashboard img { width: 100%; } + +@media (max-width: 768px) { + table, + th, + td { + font-size: 12px; + } + + th { + text-align: center; + } + + table { + display: block; + overflow-x: auto; + } + + .license-section { + margin-bottom: 1rem; + } + .instructor-assign-section { + min-height: 200px; + } +}