added responsive styles to pankuzulist and slide component. Added subdivision to tablet viewport type.

This commit is contained in:
2024-11-03 00:03:43 +09:00
parent 8247b05192
commit d4ec57aa0d
18 changed files with 1249 additions and 975 deletions

View File

@@ -65,7 +65,10 @@ const hamburgerMenuEntries: Array<DropDownEntry> = [
/>
<HamburgerMenu
:entries="hamburgerMenuEntries"
v-if="viewPortType === ViewPortType.MOBILE"
v-if="
viewPortType === ViewPortType.MOBILE ||
viewPortType === ViewPortType.MEDIUM_TABLET
"
/>
</div>
</div>
@@ -132,7 +135,7 @@ header {
background: transparent !important;
}
@media screen and (max-width: 640px) {
@media screen and (max-width: 960px) {
.navigation-menu {
padding-inline: 1rem;
width: calc(100% - 2rem);