Skip to content

Commit

Permalink
Merge pull request #762 from Carifio24/hide-acknowledgement-small-screen
Browse files Browse the repository at this point in the history
Hide footer on a short screen
  • Loading branch information
patudom authored Jan 23, 2025
2 parents c3cfb54 + f257b72 commit 60c6bb2
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion src/hubbleds/assets/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,23 @@ footer .v-card__text {
padding: 6px;
}

/* Hide the footer on a short screen (Chromebooks ~768 px) */
@media (max-height: 800px) {
footer.v-footer {
display: none;
}
}
/* also hide on narrow screens (Chromebooks ~1366 px)*/
@media (max-width: 1200px) {
footer.v-footer {
display: none;
}
}

.cosmicds-footer .v-card__text {
line-height: 1;
}

.theme--dark .cosmicds-footer {
background-color: var(--cosmicds-blue) !important;
color: #BDBDBD !important;
Expand Down Expand Up @@ -320,4 +337,4 @@ div.plotly .hoverlayer g.hovertext {
.card-table td {
padding: 8px;
border: 1px solid #aaa;
}
}

0 comments on commit 60c6bb2

Please sign in to comment.