Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Kojimena committed Oct 11, 2023
1 parent ad9dcc9 commit f1ad405
Show file tree
Hide file tree
Showing 7 changed files with 45 additions and 15 deletions.
1 change: 0 additions & 1 deletion uniEmpleos/src/components/Header/header.css
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ button.buttonlogo:focus{
}

.container {
max-width: 1100px;
margin: 0 auto;
padding: 0 15px;
display: flex;
Expand Down
12 changes: 8 additions & 4 deletions uniEmpleos/src/components/InfoStudent/InfoStudent.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,17 @@
justify-content: center;
align-items: center;
flex-direction: row;
background-color: #a08ae5;
color: #333333;
background-color: #8c6fd454;
gap: 20px;
border-radius: 10px;
padding: 0;
}

.button:hover {
cursor: pointer;
border: 2px solid #8c6fd4;
background-color: #8c6fd4;
border: none;
transition: background-color 0.3s, color 0.3s;
}

Expand Down Expand Up @@ -66,17 +67,20 @@
flex-direction: column;
overflow: auto;
scroll-behavior: smooth;
justify-content: center;
}

.name {
font-size: 18px;
font-weight: 700;
color: #fff;
color: #333333;
margin-bottom: 10px;
text-align: left;
}

.university {
font-size: 16px;
font-weight: 400;
color: #fff;
color: #333333;
text-align: left;
}
2 changes: 1 addition & 1 deletion uniEmpleos/src/components/InfoTab/InfoTab.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const InfoTab = ({
<div className={styles.button}>
<Button label={labelbutton} onClick={onClick} />
{verPostulantes && (
<Button label="Ver postulantes" onClick={verPostulantes} />
<Button label="Ver postulantes" onClick={verPostulantes}backgroundColor={"#a08ae5"}/>
)}
</div>
</div>
Expand Down
17 changes: 14 additions & 3 deletions uniEmpleos/src/components/InfoTab/InfoTab.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
display: flex;
flex-direction: column;
border-radius: 10px;
background-color: #fff;
background-color: #333333;
color: #fff;
margin-bottom: 20px;
border: 1px solid #d6d6d6;
padding: 20px;
Expand All @@ -27,21 +28,31 @@
}

.container p, h3{
color: #000;
color: #f5f5f5;
font-size: 16px;
text-transform: capitalize;
}

.containerinfomain h3{
font-size: 18px;
font-weight: 700;
margin-bottom: 10px;
border-radius: 10px;
background: #f8f8ef;
padding: 10px;
}

.button {
display: flex;
flex-direction: row;
gap: 10px;
}

@media screen and (max-width: 768px){
.container{
width: 100%;
}
.containerinfosecond{
flex-direction: column;
gap: 20px;
}
}
1 change: 1 addition & 0 deletions uniEmpleos/src/pages/PostulantesPage/PostulantesPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ const PostulantesPage = ({ id }) => {
style={typeError}
close={() => setWarning(false)}
/>
<h1>Postulantes</h1>
<div className={style.infoStudentContainer}>
{response.data ? (
response.data.map((postulante) => (
Expand Down
16 changes: 12 additions & 4 deletions uniEmpleos/src/pages/PostulantesPage/PostulantesPage.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,21 @@
height: 100%;
}

.mainContainer h1{
font-weight: 700;
margin-bottom: 20px;
color: #333333;
text-align: left;
padding: 20px;
}

.infoStudentContainer {
display: flex;
flex-direction: row;
width: 100%;
flex-wrap: wrap;
justify-content: center;
align-content: flex-start
justify-content: start;
gap: 30px;
margin-top: 20px;
padding: 10px;
}

.sinPostulantes {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
.containerinfoprincipal{
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
justify-content: start;
gap: 30px;
margin-top: 20px;
padding: 10px;
}

@media screen and (max-width: 768px){
.containerinfoprincipal{
justify-content: center;
}
}

0 comments on commit f1ad405

Please sign in to comment.