mirror of
https://github.com/rmcrackan/Libation.git
synced 2025-12-23 22:17:52 -05:00
16 lines
497 B
CSS
16 lines
497 B
CSS
/* Custom styles for Libation documentation */
|
|
|
|
/* Hide certain nav items on tablet devices to prevent horizontal scroll */
|
|
@media (min-width: 640px) and (max-width: 959px) {
|
|
/* Target specific nav items by their position */
|
|
/* Hide "Issues & Requests" and "Donate" links on tablet */
|
|
.VPNav .VPNavBar .nav .VPNavBarMenu .VPMenu:nth-child(3) {
|
|
display: none;
|
|
}
|
|
|
|
/* Alternative: Use a more specific selector if needed */
|
|
.VPNavBarMenuLink[href*="issues"] {
|
|
display: none;
|
|
}
|
|
}
|