bottom-1.5

This commit is contained in:
Chuck1sn
2025-06-04 12:48:08 +08:00
parent 50a1bc65ef
commit 27529ee70c
2 changed files with 4 additions and 4 deletions

View File

@@ -15,7 +15,7 @@ export default [
}),
http.post("/ai/action/search", () => {
const response = HttpResponse.json({
action: "CREATE_USER",
action: "DELETE_USER",
});
return response;
}),

View File

@@ -15,9 +15,9 @@
]" :placeholder="placeholder" required />
<button type="submit" :class="[
'text-white absolute end-2.5 font-medium rounded-lg',
size === 'sm' ? 'text-xs px-2.5 py-1.5 bottom-2' :
size === 'md' ? 'text-sm px-3 py-2 bottom-2.5' :
'text-base px-4 py-2.5 bottom-3',
size === 'sm' ? 'text-xs px-2.5 py-1.5 bottom-1.5' :
size === 'md' ? 'text-sm px-3 py-2 bottom-1.5' :
'text-base px-4 py-2.5 bottom-1.5',
bgColor
]" @click.prevent="handleSubmitClick(bindInput)">{{ content }}</button>
</div>