Skip to content

Commit

Permalink
Merge pull request #589 from scientist-softserv/dashboard-horizontal-…
Browse files Browse the repository at this point in the history
…scroll-fix

🐛 Hide table that doesn't display anything
  • Loading branch information
kirkkwang authored Feb 12, 2024
2 parents 59e75fc + c588b1e commit cacd6dd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
7 changes: 7 additions & 0 deletions app/assets/stylesheets/hyku.scss
Original file line number Diff line number Diff line change
Expand Up @@ -482,3 +482,10 @@ body.public-facing {
.mt-20 {
margin-top: 20px;
}

// Making this very specific so it doesn't affect other tables. This doesn't
// appear to be actually displaying anything but it throws off the layout in
// the dashboard on mobile, so we're hiding it
body.dashboard #content-wrapper table[aria-label="Resource Types"].table.table-striped.sr-only.text-left {
display: none;
}
1 change: 0 additions & 1 deletion app/assets/stylesheets/themes/dc_repository.scss
Original file line number Diff line number Diff line change
Expand Up @@ -957,7 +957,6 @@ body.dc_repository {
.abstract-search-results {
p {
padding-right: $golden-ratio-2;
text-align: justify;
font-size: $type-3;
line-height: $type-4;
}
Expand Down

0 comments on commit cacd6dd

Please sign in to comment.