fix. [SWV-866] 액션버튼 기능 개선 (이미지 타입 추가)
Made-with: Cursor
This commit is contained in:
@@ -69,10 +69,9 @@
|
||||
type="single"
|
||||
platform="pc"
|
||||
class="inspection-launcher"
|
||||
:icon-component="AtomsIconsPlayRoundFill"
|
||||
:icon-props="{ size: 16, color: '#332C2A' }"
|
||||
>
|
||||
{{ tm('Txt_Game_Start') }}
|
||||
<AtomsIconsPlayRoundFill :size="16" color="#332C2A" />
|
||||
</BlocksButtonLauncher>
|
||||
</div>
|
||||
</div>
|
||||
@@ -358,6 +357,9 @@ definePageMeta({
|
||||
.button-group:deep(.inspection-launcher.btn-base) {
|
||||
@apply flex-1 bg-[var(--primary)] px-0 rounded md:rounded-lg;
|
||||
}
|
||||
.button-group:deep(.inspection-launcher) .text {
|
||||
@apply flex items-center justify-center gap-[2px] mr-0 md:gap-[4px];
|
||||
}
|
||||
.button-group:deep(.inspection-launcher.btn-base .icon-platform) {
|
||||
@apply hidden;
|
||||
}
|
||||
|
||||
13
app/pages/teaser.vue
Normal file
13
app/pages/teaser.vue
Normal file
@@ -0,0 +1,13 @@
|
||||
<script setup lang="ts">
|
||||
definePageMeta({
|
||||
layout: false, // 동적 레이아웃을 위해 기본 레이아웃 비활성화
|
||||
middleware: ['inspection'],
|
||||
})
|
||||
|
||||
// 진입 시 /home으로 리다이렉트
|
||||
await navigateTo('/home', { replace: true })
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div />
|
||||
</template>
|
||||
Reference in New Issue
Block a user