Skip to content

Commit aceb877

Browse files
committed
Make the Globals index look like the other indexes
1 parent 247d4d1 commit aceb877

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/ui/src/Card/ListItem.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<div class="flex items-center justify-between py-3 px-5">
2+
<div class="flex items-center justify-between py-2 ps-5 pe-3">
33
<slot />
44
</div>
55
</template>

resources/js/components/globals/Listing.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<CardList :heading="__('Title')">
33
<CardListItem v-for="global in globals" :key="global.id">
44
<Tooltip :text="global.handle" :delay="1000">
5-
<a :href="global.edit_url">{{ __(global.title) }}</a>
5+
<a class="text-sm" :href="global.edit_url">{{ __(global.title) }}</a>
66
</Tooltip>
77
<Dropdown>
88
<DropdownMenu>

0 commit comments

Comments
 (0)