1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-02-09 20:23:37 +02:00

Hide speaker note popup link on mobile

This uses the same media query as the rest of the mdbook theme:
devices with a width less than 1080px (mobiles) will not see the link
to open speaker notes in a new window.
This commit is contained in:
Martin Geisler 2023-01-05 08:26:22 +01:00
parent 15f88b3700
commit 019e464ba8

View File

@ -22,3 +22,9 @@
.content details summary a {
margin-left: 0.5em;
}
@media only screen and (max-width: 1080px) {
.content details summary a {
display: none;
}
}