Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,8 @@ const ApplicationForm = () => {
View Applicants details
</span>
</div>
<p className={style.FormHeader}>Please, fill this form for every application submitted</p>
<form className={style.form} onSubmit={handleSubmit}>
<p>Please, fill this form for every application submitted</p>
{applicationsFormData.map((item, index) => {
return (
<label htmlFor={item.id} key={index}>
Expand All @@ -178,8 +178,9 @@ const ApplicationForm = () => {
</label>
);
})}

<div className={style.buttonContainer}>
<input id="submit" type="submit" value="Submit" />
</div>
</form>
{loading && (
<div className={style.editContainer}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
padding: 0 20px 50px;
font-size: 16px;
}
.FormHeader{
font-size: 20px;
margin-bottom: 1rem;
margin-top: 4rem;
}
.buttonContainer{
display: flex;
align-items: flex-end;
padding-bottom: 0.5rem;
}
.editContainer {
position: fixed;
top: 0;
Expand Down Expand Up @@ -42,8 +52,8 @@
}

.form {
display: flex;
flex-flow: column nowrap;
display:grid;
grid-template-columns: 1fr 1fr;
max-width: 500px;
gap: 24px;
}
Expand Down Expand Up @@ -127,6 +137,11 @@
}
}

@media only screen and (max-width:767px){
.form {
grid-template-columns: 1fr;
}
}
@media screen and (min-width: 1200px) {
.application_form {
padding: 0 40px 50px;
Expand Down
31 changes: 12 additions & 19 deletions Apply-For-Me-UI/src/pages/applications/Applications.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ th:last-child {
height: 40px;
}

@media (max-width: 480px) {
@media only screen and (max-width: 480px) {
.applications_card_title {
flex-direction: column;
align-items:flex-start;
Expand All @@ -379,40 +379,33 @@ th:last-child {
padding-left: 1rem;
padding-right: 1rem;
}

.applications_table_wrapper {
display: none;
}

.applications_list_wrapper {
display: block;
}

.dropbtn {
display: none;
}

.applications_search_form {
width: 90%;
padding-left: 0rem;
}

.show_tablet {
display: none;
color: #7c7ba8;
font-weight: 400;
font-size: 16px;
line-height: 150%;
}
.rrtable {
font-size: 14px;
}
/* … */
}

.show_tablet {
display: none;
color: #7c7ba8;
font-weight: 400;
font-size: 16px;
line-height: 150%;
}
.hide_tablet {
display: none;
}
.rrtable {
font-size: 14px;
}


@media (min-width: 481px) and (max-width: 768px) {
.table_head{
Expand Down
20 changes: 13 additions & 7 deletions Apply-For-Me-UI/src/pages/applications/components/Table.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const Table = () => {
<th className={styles.hide_tablet}>State</th>
<th>Salary Range</th>
<th className={styles.hide_tablet}>Job Type</th>
<th className={styles.table_head}>Date</th>
<th>Date</th>
</tr>
</thead>
<tbody>
Expand All @@ -71,27 +71,33 @@ const Table = () => {
onClick={()=>navigate(`/dashboard/applications/${application.id}`)}
>
<td>
<div>{application.jobCompany}</div>
<div className={styles.show_tablet}>
{application.jobCompany}
</div>
</td>
<td>
<div>{application.jobTitle}</div>
<div className={styles.show_tablet}>
{application.jobTitle}
</div>
</td>
<td className={styles.hide_tablet}>
{application.jobLocation}
</td>
<td className={styles.hide_tablet}>
{application?.professionalProfile?.salaryRange}
<td >
<div className={styles.show_tablet}>
{application?.professionalProfile?.salaryRange}
</div>

</td>
<td className={styles.hide_tablet}>
{application.jobLocationType}
{application?.jobLocationType}
</td>
<td >
<div className={styles.show_tablet}>
{application.createdOn?.split("T").shift()}
</div>

</td>
<td>{application.createdOn?.split("T").shift()}</td>
</tr>
))}
</tbody>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,4 +97,7 @@
gap: 1rem;
flex-wrap: wrap;
}
.jobContainer{
margin-left: 0rem;
}
}
14 changes: 6 additions & 8 deletions Apply-For-Me-UI/src/pages/job_decription/JobDescription.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,14 +101,12 @@ const JobDescription = () => {
<h5>Job Summary</h5>
<p>{descriptionDetails?.summary}</p>
</div>
{/* <div>
<h5>Responsibilities</h5>
<ul>
{job.reponsibilities.map(responsibility => (
<li key={responsibility}>{responsibility}</li>
))}
</ul>
</div> */}
<div>
<h5>Job Link</h5>
<p>
{descriptionDetails?.jobLink}
</p>
</div>
{/* <div>
<h5>Skills and Experience</h5>
<p>{descriptionDetails?.professionalProfile}</p>
Expand Down
14 changes: 14 additions & 0 deletions Apply-For-Me-UI/src/pages/users_page/user_page_applicants.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,18 @@ justify-content: space-evenly;
color:#2E3192;
font-size: 25px;
}
@media only screen and (min-width:320px) and (max-width:480px){
.applicants_profile_container {
padding: 1rem;
}
.profile_header {
font-size: 1.5rem;
}
.proile_info_container_label {
font-size: 17px;
}
.profile-text-size {
font-size: 17px;
}
}