Last active
June 17, 2023 09:30
-
-
Save kurudrive/f601539fee4e0fd6ae0b432155594581 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* スライドナビの最大幅を600pxに */ | |
@media (min-width: 992px) { | |
body.device-pc .vk-mobile-nav { | |
max-width:600px; | |
} | |
} | |
/* PCでもモバイルメニューが表示されるように */ | |
@media (min-width: 992px) { | |
body.device-pc .vk-mobile-nav-menu-btn{ | |
display:block; | |
} | |
} | |
@media (min-width: 992px) { | |
body.device-pc .vk-mobile-nav { | |
max-width:600px; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment