Skip to content

Commit

Permalink
Merge pull request #121 from Pearson-Advance/vue/PADV-1158
Browse files Browse the repository at this point in the history
PADV-1158 - Adjust vertical height in licence inventory and instructor assignment
  • Loading branch information
sergivalero20 authored Oct 18, 2024
2 parents f09c54f + 62cf8a2 commit 87d41e6
Showing 1 changed file with 32 additions and 1 deletion.
33 changes: 32 additions & 1 deletion src/features/Dashboard/DashboardPage/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -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;
}
}

0 comments on commit 87d41e6

Please sign in to comment.