We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 247d4d1 commit aceb877Copy full SHA for aceb877
packages/ui/src/Card/ListItem.vue
@@ -1,5 +1,5 @@
1
<template>
2
- <div class="flex items-center justify-between py-3 px-5">
+ <div class="flex items-center justify-between py-2 ps-5 pe-3">
3
<slot />
4
</div>
5
</template>
resources/js/components/globals/Listing.vue
@@ -2,7 +2,7 @@
<CardList :heading="__('Title')">
<CardListItem v-for="global in globals" :key="global.id">
<Tooltip :text="global.handle" :delay="1000">
- <a :href="global.edit_url">{{ __(global.title) }}</a>
+ <a class="text-sm" :href="global.edit_url">{{ __(global.title) }}</a>
6
</Tooltip>
7
<Dropdown>
8
<DropdownMenu>
0 commit comments