diff --git a/src/hubbleds/assets/custom.css b/src/hubbleds/assets/custom.css index 7a3df2876..c036e251a 100644 --- a/src/hubbleds/assets/custom.css +++ b/src/hubbleds/assets/custom.css @@ -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; @@ -320,4 +337,4 @@ div.plotly .hoverlayer g.hovertext { .card-table td { padding: 8px; border: 1px solid #aaa; -} \ No newline at end of file +}