File tree Expand file tree Collapse file tree 3 files changed +7
-10
lines changed
components/offers/profile Expand file tree Collapse file tree 3 files changed +7
-10
lines changed Original file line number Diff line number Diff line change 1
- import {
2
- BuildingLibraryIcon ,
3
- LightBulbIcon ,
4
- } from '@heroicons/react/24/outline' ;
1
+ import { BuildingLibraryIcon , LightBulbIcon } from '@heroicons/react/20/solid' ;
5
2
6
3
import type { EducationType } from '~/components/offers/EducationFields' ;
7
4
import { getLabelForEducationFieldType } from '~/components/offers/EducationFields' ;
@@ -18,9 +15,9 @@ export default function EducationCard({
18
15
< div className = "block rounded-lg border border-slate-200 bg-white p-4 text-sm " >
19
16
< div className = "flex justify-between" >
20
17
< div >
21
- < div className = "flex items-center" >
22
- < LightBulbIcon className = "mr-1 h-5" />
23
- < span className = "text-semibold ml-1" >
18
+ < div className = "mb-2 flex items-center" >
19
+ < LightBulbIcon className = "mr-1 h-5 text-slate-400 " />
20
+ < span className = "ml-1 font-semibold " >
24
21
{ field
25
22
? `${
26
23
type ? type . charAt ( 0 ) . toUpperCase ( ) + type . slice ( 1 ) : 'N/A'
@@ -35,7 +32,7 @@ export default function EducationCard({
35
32
</ div >
36
33
{ school && (
37
34
< div className = "flex flex-row" >
38
- < BuildingLibraryIcon className = "mr-1 h-5" />
35
+ < BuildingLibraryIcon className = "mr-1 h-5 text-slate-400 " />
39
36
< span className = "ml-1" > { school } </ span >
40
37
</ div >
41
38
) }
Original file line number Diff line number Diff line change @@ -200,7 +200,7 @@ export default function OfferProfile() {
200
200
< div className = "flex h-screen w-screen" >
201
201
< div className = "m-auto mx-auto w-screen justify-center font-medium text-slate-500" >
202
202
< Spinner display = "block" size = "lg" />
203
- < div className = "text-center" > Loading...</ div >
203
+ < div className = "text-center" > Loading profile ...</ div >
204
204
</ div >
205
205
</ div >
206
206
) : (
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ export default function OffersSubmissionResult() {
82
82
< div className = "flex h-screen w-screen" >
83
83
< div className = "m-auto mx-auto w-screen justify-center font-medium text-slate-500" >
84
84
< Spinner display = "block" size = "lg" />
85
- < div className = "text-center" > Loading...</ div >
85
+ < div className = "text-center" > Loading results ...</ div >
86
86
</ div >
87
87
</ div >
88
88
) : checkToken . isError || getAnalysis . isError ? (
You can’t perform that action at this time.
0 commit comments