mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-02-02 05:08:03 +01:00
feat(components): uniformize colors and variants (#141)
This commit is contained in:
@@ -99,7 +99,7 @@ function onSubmit(event: FormSubmitEvent<Schema>) {
|
||||
Submit
|
||||
</UButton>
|
||||
|
||||
<UButton variant="outline" :disabled="form?.disabled" @click="form?.clear()">
|
||||
<UButton color="gray" variant="outline" :disabled="form?.disabled" @click="form?.clear()">
|
||||
Clear
|
||||
</UButton>
|
||||
</div>
|
||||
|
||||
@@ -68,11 +68,11 @@ function onError(event: any) {
|
||||
</UForm>
|
||||
|
||||
<div class="flex gap-2">
|
||||
<UButton color="black" @click="addItem()">
|
||||
<UButton color="gray" variant="subtle" size="sm" @click="addItem()">
|
||||
Add Item
|
||||
</UButton>
|
||||
|
||||
<UButton color="black" variant="ghost" @click="removeItem()">
|
||||
<UButton color="gray" variant="ghost" size="sm" @click="removeItem()">
|
||||
Remove Item
|
||||
</UButton>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user