Update button styles in Home.vue for improved visual consistency
- Enhanced button styles by adding background color and border properties, ensuring a more cohesive design. - Updated text styles to use a medium font weight for better readability and emphasis on button labels. These changes contribute to a more polished user interface and improve overall user interaction within the Home component.
This commit is contained in:
parent
dfd3ddd112
commit
74e443184f
1 changed files with 4 additions and 6 deletions
|
|
@ -79,20 +79,18 @@
|
||||||
<Button
|
<Button
|
||||||
@click="openComposer('note')"
|
@click="openComposer('note')"
|
||||||
size="lg"
|
size="lg"
|
||||||
variant="secondary"
|
class="h-12 px-4 rounded-full shadow-md hover:shadow-lg transition-all gap-2 bg-background border-2 border-border hover:bg-accent"
|
||||||
class="h-12 px-4 rounded-full shadow-md hover:shadow-lg transition-all gap-2"
|
|
||||||
>
|
>
|
||||||
<MessageSquare class="h-4 w-4" />
|
<MessageSquare class="h-4 w-4" />
|
||||||
<span class="text-sm">Note</span>
|
<span class="text-sm font-medium">Note</span>
|
||||||
</Button>
|
</Button>
|
||||||
<Button
|
<Button
|
||||||
@click="openComposer('rideshare')"
|
@click="openComposer('rideshare')"
|
||||||
size="lg"
|
size="lg"
|
||||||
variant="secondary"
|
class="h-12 px-4 rounded-full shadow-md hover:shadow-lg transition-all gap-2 bg-background border-2 border-border hover:bg-accent"
|
||||||
class="h-12 px-4 rounded-full shadow-md hover:shadow-lg transition-all gap-2"
|
|
||||||
>
|
>
|
||||||
<Car class="h-4 w-4" />
|
<Car class="h-4 w-4" />
|
||||||
<span class="text-sm">Rideshare</span>
|
<span class="text-sm font-medium">Rideshare</span>
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue