fix
This commit is contained in:
@@ -3,7 +3,7 @@
|
|||||||
const router = useRouter()
|
const router = useRouter()
|
||||||
|
|
||||||
defineProps({
|
defineProps({
|
||||||
title: { type: String, default: 'AI STYLING ASSISTANT' },
|
title: { type: String, default: 'AI STYLING ASSISTANT' }
|
||||||
})
|
})
|
||||||
|
|
||||||
const emit = defineEmits(['clickReturn', 'clickProfile'])
|
const emit = defineEmits(['clickReturn', 'clickProfile'])
|
||||||
@@ -40,20 +40,21 @@
|
|||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
|
||||||
> .return {
|
> .return {
|
||||||
|
color: #2c2c2c;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 7rem;
|
left: 7rem;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
> .title {
|
> .title {
|
||||||
font-size: 4.8rem;
|
color: #2c2c2c;
|
||||||
color: var(--header-title-color, #000);
|
font-family: 'satoshiRegular';
|
||||||
font-family: 'boskaRegular';
|
font-size: 4rem;
|
||||||
}
|
}
|
||||||
> .profile {
|
> .profile {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 7rem;
|
right: 7rem;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
color: var(--header-title-color, #000);
|
color: #333;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -6,10 +6,8 @@
|
|||||||
import FooterNavigation from '@/components/FooterNavigation.vue'
|
import FooterNavigation from '@/components/FooterNavigation.vue'
|
||||||
import RouteCache from '@/components/RouteCache.vue'
|
import RouteCache from '@/components/RouteCache.vue'
|
||||||
import profile from './profile.vue'
|
import profile from './profile.vue'
|
||||||
//const props = defineProps({
|
const props = defineProps({})
|
||||||
//})
|
const emit = defineEmits([])
|
||||||
//const emit = defineEmits([
|
|
||||||
//])
|
|
||||||
const profileRef = ref(null)
|
const profileRef = ref(null)
|
||||||
const handleClickProfile = () => {
|
const handleClickProfile = () => {
|
||||||
profileRef.value.open()
|
profileRef.value.open()
|
||||||
|
|||||||
Reference in New Issue
Block a user