mirror of
https://git.hmsn.ink/kospo/svcm/dmz.git
synced 2026-03-19 19:15:08 +09:00
모바일 호환
This commit is contained in:
@@ -175,11 +175,17 @@ onUnmounted(() => {
|
|||||||
.modal-content {
|
.modal-content {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
max-width: 100% !important;
|
max-width: 100% !important;
|
||||||
|
min-height: 95% !important;
|
||||||
|
|
||||||
.modal-card {
|
.modal-card {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
min-height: 95% !important;
|
||||||
.modal-card-body {
|
.modal-card-body {
|
||||||
padding: 0px !important;
|
padding: 0px !important;
|
||||||
|
.form-fieldset {
|
||||||
|
max-width: 100%;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -22,6 +22,7 @@ const { activeMobileSubsidebarId, toggleMobileSubnav } = useNavbarLayoutContext(
|
|||||||
<VIcon
|
<VIcon
|
||||||
:icon="props.link.icon"
|
:icon="props.link.icon"
|
||||||
/>
|
/>
|
||||||
|
<span v-if="props.link.label">{{ props.link.label }}</span>
|
||||||
</a>
|
</a>
|
||||||
<a
|
<a
|
||||||
v-if="props.link.type === 'megamenu'"
|
v-if="props.link.type === 'megamenu'"
|
||||||
@@ -34,6 +35,7 @@ const { activeMobileSubsidebarId, toggleMobileSubnav } = useNavbarLayoutContext(
|
|||||||
<VIcon
|
<VIcon
|
||||||
:icon="props.link.icon"
|
:icon="props.link.icon"
|
||||||
/>
|
/>
|
||||||
|
<span v-if="props.link.label">{{ props.link.label }}</span>
|
||||||
</a>
|
</a>
|
||||||
<a
|
<a
|
||||||
v-else-if="props.link.type === 'action'"
|
v-else-if="props.link.type === 'action'"
|
||||||
@@ -45,6 +47,7 @@ const { activeMobileSubsidebarId, toggleMobileSubnav } = useNavbarLayoutContext(
|
|||||||
<VIcon
|
<VIcon
|
||||||
:icon="props.link.icon"
|
:icon="props.link.icon"
|
||||||
/>
|
/>
|
||||||
|
<span v-if="props.link.label">{{ props.link.label }}</span>
|
||||||
</a>
|
</a>
|
||||||
<VLink
|
<VLink
|
||||||
v-else-if="props.link.type === 'link'"
|
v-else-if="props.link.type === 'link'"
|
||||||
@@ -53,6 +56,20 @@ const { activeMobileSubsidebarId, toggleMobileSubnav } = useNavbarLayoutContext(
|
|||||||
<VIcon
|
<VIcon
|
||||||
:icon="props.link.icon"
|
:icon="props.link.icon"
|
||||||
/>
|
/>
|
||||||
|
<span v-if="props.link.label">{{ props.link.label }}</span>
|
||||||
</VLink>
|
</VLink>
|
||||||
</li>
|
</li>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
li {
|
||||||
|
width:120px !important;
|
||||||
|
span {
|
||||||
|
color: var(--modal-text) !important;
|
||||||
|
padding-left: 10px;
|
||||||
|
}
|
||||||
|
.iconify {
|
||||||
|
transform: translateY(5px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|||||||
@@ -247,4 +247,7 @@ watch(() => Boolean(activeSubnav.value?.type === 'megamenu' || isMobileSidebarOp
|
|||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
@import '/@src/scss/abstracts/all';
|
@import '/@src/scss/abstracts/all';
|
||||||
@import '/@src/scss/layout/navbar';
|
@import '/@src/scss/layout/navbar';
|
||||||
|
.mobile-main-sidebar {
|
||||||
|
width: 120px;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -399,6 +399,16 @@ function onRePassword() {
|
|||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
@media (width <= 767px) {
|
@media (width <= 767px) {
|
||||||
|
.profile-dropdown {
|
||||||
|
.v-avatar {
|
||||||
|
min-width: 35px;
|
||||||
|
max-width: 35px;
|
||||||
|
.avatar {
|
||||||
|
min-width: 30px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.avatar {
|
.avatar {
|
||||||
width:30px !important;
|
width:30px !important;
|
||||||
height:30px !important;
|
height:30px !important;
|
||||||
|
|||||||
Reference in New Issue
Block a user