Skip to content

Commit 3cd2b41

Browse files
committed
wip
1 parent be7e826 commit 3cd2b41

15 files changed

Lines changed: 15 additions & 15 deletions

resources/js/Components/Common/Client/ClientTableHeading.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import TableHeading from '@/Components/Common/TableHeading.vue';
44

55
<template>
66
<TableHeading>
7-
<div class="py-1.5 pr-3 text-left font-semibold text-text-primary pl-4 sm:pl-6 lg:pl-8 3xl:pl-12">Name</div>
7+
<div class="py-1.5 pr-3 text-left font-semibold text-text-primary pl-4 sm:pl-6 lg:pl-8">Name</div>
88
<div class="px-3 py-1.5 text-left font-semibold text-text-primary">Projects</div>
99
<div class="relative py-1.5 pl-3 pr-4 sm:pr-6 lg:pr-8 3xl:pr-12">
1010
<span class="sr-only">Edit</span>

resources/js/Components/Common/Invitation/InvitationTableHeading.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import TableHeading from '@/Components/Common/TableHeading.vue';
55
<template>
66
<TableHeading>
77
<div
8-
class="px-3 py-1.5 text-left font-semibold text-text-primary pl-4 sm:pl-6 lg:pl-8 3xl:pl-12">
8+
class="px-3 py-1.5 text-left font-semibold text-text-primary pl-4 sm:pl-6 lg:pl-8">
99
Email
1010
</div>
1111
<div class="px-3 py-1.5 text-left font-semibold text-text-primary">Role</div>

resources/js/Components/Common/Invitation/InvitationTableRow.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ async function resendInvitation() {
5757
<template>
5858
<TableRow>
5959
<div
60-
class="whitespace-nowrap px-3 py-4 text-sm text-text-secondary pl-4 sm:pl-6 lg:pl-8 3xl:pl-12">
60+
class="whitespace-nowrap px-3 py-4 text-sm text-text-secondary pl-4 sm:pl-6 lg:pl-8">
6161
{{ invitation.email }}
6262
</div>
6363
<div class="whitespace-nowrap px-3 py-4 text-sm text-text-secondary">

resources/js/Components/Common/Member/MemberTableHeading.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import TableHeading from '@/Components/Common/TableHeading.vue';
55
<template>
66
<TableHeading>
77
<div
8-
class="py-1.5 pr-3 text-left font-semibold text-text-primary pl-4 sm:pl-6 lg:pl-8 3xl:pl-12">
8+
class="py-1.5 pr-3 text-left font-semibold text-text-primary pl-4 sm:pl-6 lg:pl-8">
99
Name
1010
</div>
1111
<div class="px-3 py-1.5 text-left font-semibold text-text-primary">Email</div>

resources/js/Components/Common/Member/MemberTableRow.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ const userHasValidMailAddress = computed(() => {
6060
<template>
6161
<TableRow>
6262
<div
63-
class="whitespace-nowrap flex items-center space-x-5 py-4 pr-3 text-sm font-medium text-text-primary pl-4 sm:pl-6 lg:pl-8 3xl:pl-12">
63+
class="whitespace-nowrap flex items-center space-x-5 py-4 pr-3 text-sm font-medium text-text-primary pl-4 sm:pl-6 lg:pl-8">
6464
<span>
6565
{{ member.name }}
6666
</span>

resources/js/Components/Common/Project/ProjectTableHeading.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ defineProps<{
77

88
<template>
99
<TableHeading>
10-
<div class="px-3 py-1.5 text-left font-semibold text-text-primary pl-4 sm:pl-6 lg:pl-8 3xl:pl-12">Client</div>
10+
<div class="px-3 py-1.5 text-left font-semibold text-text-primary pl-4 sm:pl-6 lg:pl-8">Client</div>
1111
<div
1212
class="py-1.5 pr-3 text-left font-semibold text-text-primary">
1313
Name

resources/js/Components/Common/Project/ProjectTableRow.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ const showEditProjectModal = ref(false);
7676
:original-project="project"></ProjectEditModal>
7777
<TableRow :href="route('projects.show', { project: project.id })">
7878
<div
79-
class="whitespace-nowrap min-w-0 px-3 py-4 text-sm text-text-secondary pl-4 sm:pl-6 lg:pl-8 3xl:pl-12">
79+
class="whitespace-nowrap min-w-0 px-3 py-4 text-sm text-text-secondary pl-4 sm:pl-6 lg:pl-8">
8080
<div
8181
v-if="project.client_id"
8282
class="overflow-ellipsis overflow-hidden">

resources/js/Components/Common/ProjectMember/ProjectMemberTableHeading.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import TableHeading from '@/Components/Common/TableHeading.vue';
55
<template>
66
<TableHeading>
77
<div
8-
class="py-1.5 pr-3 text-left font-semibold text-text-primary pl-4 sm:pl-6 lg:pl-8 3xl:pl-12">
8+
class="py-1.5 pr-3 text-left font-semibold text-text-primary pl-4 sm:pl-6 lg:pl-8">
99
Name
1010
</div>
1111
<div class="px-3 py-1.5 text-left font-semibold text-text-primary">

resources/js/Components/Common/ProjectMember/ProjectMemberTableRow.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const showEditModal = ref(false);
4545
:name="member?.name"
4646
:project-member="projectMember"></ProjectMemberEditModal>
4747
<div
48-
class="whitespace-nowrap flex items-center space-x-5 3xl:pl-12 py-4 pr-3 text-sm font-medium text-text-primary pl-4 sm:pl-6 lg:pl-8 3xl:pl-12">
48+
class="whitespace-nowrap flex items-center space-x-5 py-4 pr-3 text-sm font-medium text-text-primary pl-4 sm:pl-6 lg:pl-8">
4949
<span>
5050
{{ member?.name }}
5151
</span>

resources/js/Components/Common/Report/ReportTableHeading.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import TableHeading from '@/Components/Common/TableHeading.vue';
55
<template>
66
<TableHeading>
77
<div
8-
class="py-1.5 pr-3 text-left font-semibold text-text-primary pl-4 sm:pl-6 lg:pl-8 3xl:pl-12">
8+
class="py-1.5 pr-3 text-left font-semibold text-text-primary pl-4 sm:pl-6 lg:pl-8">
99
Name
1010
</div>
1111
<div class="px-3 py-1.5 text-left font-semibold text-text-primary">

0 commit comments

Comments
 (0)