fix: 연감 순서 조정이 1000px에도 동작

This commit is contained in:
2022-05-16 23:44:32 +09:00
parent 27c4dd1b43
commit 7e1cf64de6
+6 -1
View File
@@ -5,7 +5,9 @@
<!-- HACK: variant에 정상적인 값을 넣어야 해서...--> <!-- HACK: variant에 정상적인 값을 넣어야 해서...-->
<BDropdown class="optionMenu" right :variant="('sammo-base2' as 'primary')"> <BDropdown class="optionMenu" right :variant="('sammo-base2' as 'primary')">
<template #button-content><i class="bi bi-gear-fill"></i>&nbsp;설정</template> <template #button-content><i class="bi bi-gear-fill"></i>&nbsp;설정</template>
<BDropdownItem @click="isNationRankingBottom=!isNationRankingBottom">국가 순서 위치 변경(모바일 전용)</BDropdownItem> <BDropdownItem @click="isNationRankingBottom = !isNationRankingBottom"
>국가 순서 위치 변경(모바일 전용)</BDropdownItem
>
</BDropdown> </BDropdown>
</TopBackBar> </TopBackBar>
<div class="center row mx-0 s-border-tb"> <div class="center row mx-0 s-border-tb">
@@ -207,7 +209,9 @@ onMounted(() => {
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
@import "@scss/common/break_500px.scss";
@include media-500px {
.optionMenu::v-deep .dropdown-toggle { .optionMenu::v-deep .dropdown-toggle {
height: 32px; height: 32px;
} }
@@ -216,4 +220,5 @@ onMounted(() => {
order: 4; order: 4;
} }
} }
}
</style> </style>