diff --git a/src/components/HeaderTitle.vue b/src/components/HeaderTitle.vue index b399b12..f813324 100644 --- a/src/components/HeaderTitle.vue +++ b/src/components/HeaderTitle.vue @@ -3,7 +3,7 @@ const router = useRouter() defineProps({ - title: { type: String, default: 'AI STYLING ASSISTANT' }, + title: { type: String, default: 'AI STYLING ASSISTANT' } }) const emit = defineEmits(['clickReturn', 'clickProfile']) @@ -40,20 +40,21 @@ justify-content: center; > .return { + color: #2c2c2c; position: absolute; left: 7rem; display: inline-block; } > .title { - font-size: 4.8rem; - color: var(--header-title-color, #000); - font-family: 'boskaRegular'; + color: #2c2c2c; + font-family: 'satoshiRegular'; + font-size: 4rem; } > .profile { position: absolute; right: 7rem; display: inline-block; - color: var(--header-title-color, #000); + color: #333; } } diff --git a/src/views/Workshop/index.vue b/src/views/Workshop/index.vue index 61ae256..7ac4982 100644 --- a/src/views/Workshop/index.vue +++ b/src/views/Workshop/index.vue @@ -6,10 +6,8 @@ import FooterNavigation from '@/components/FooterNavigation.vue' import RouteCache from '@/components/RouteCache.vue' import profile from './profile.vue' - //const props = defineProps({ - //}) - //const emit = defineEmits([ - //]) + const props = defineProps({}) + const emit = defineEmits([]) const profileRef = ref(null) const handleClickProfile = () => { profileRef.value.open()