Merge pull request #34 from jtpio/mobile

Hide checkpoints on small screens
pull/6294/head
Jeremy Tuloup 5 years ago committed by GitHub
commit be90da20f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -63,6 +63,9 @@
color: var(--jp-ui-font-color0);
font-family: var(--jp-ui-font-family);
line-height: calc(1.5 * var(--jp-private-title-panel-height));
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
#jp-title h1:hover {
@ -77,4 +80,13 @@
color: var(--jp-ui-font-color0);
font-family: var(--jp-ui-font-family);
line-height: calc(1.5 * var(--jp-private-title-panel-height));
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
@media only screen and (max-width: 760px) {
.jp-ClassicCheckpoint {
display: none;
}
}

Loading…
Cancel
Save