diff --git a/src/modules/03_recruiting/components/Career.vue b/src/modules/03_recruiting/components/Career.vue index bb7ff708e..1a458efd1 100644 --- a/src/modules/03_recruiting/components/Career.vue +++ b/src/modules/03_recruiting/components/Career.vue @@ -34,7 +34,7 @@ @@ -353,7 +354,7 @@ const columns = ref([ sortable: true, field: "position", headerStyle: "font-size: 14px", - style: "font-size: 14px", + style: "font-size: 14px; width:25%;", sort: (a: string, b: string) => a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }), }, @@ -364,7 +365,7 @@ const columns = ref([ sortable: true, field: "type", headerStyle: "font-size: 14px", - style: "font-size: 14px", + style: "font-size: 14px; width:20%;", sort: (a: string, b: string) => a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }), }, @@ -408,7 +409,7 @@ const columns = ref([ sortable: true, field: "startDate", headerStyle: "font-size: 14px", - style: "font-size: 14px", + style: "font-size: 14px; width:15%;", sort: (a: string, b: string) => a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }), }, @@ -419,7 +420,7 @@ const columns = ref([ sortable: true, field: "endDate", headerStyle: "font-size: 14px", - style: "font-size: 14px", + style: "font-size: 14px; width:15%;", sort: (a: string, b: string) => a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }), }, @@ -430,7 +431,7 @@ const columns = ref([ sortable: true, field: "rangeDate", headerStyle: "font-size: 14px", - style: "font-size: 14px", + style: "font-size: 14px; width:20%;", sort: (a: string, b: string) => a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }), },