This commit is contained in:
李志鹏
2025-12-19 14:55:08 +08:00
parent ea84256cf6
commit bd36a237ec
2 changed files with 8 additions and 9 deletions

View File

@@ -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;
}
}
</style>