hensei-web/components/job/JobSection/index.module.scss
Justin Edmund 4c5fb3c28d Rename all files and fix imports
* Renaming index.scss files to index.module.scss
* Changing `import from` to `import styles from`
2023-06-23 13:19:38 -07:00

64 lines
1 KiB
SCSS

#Job {
box-sizing: border-box;
display: flex;
margin-bottom: $unit-3x;
width: 100%;
// prettier-ignore
@media only screen
and (max-width: 800px)
and (max-height: 920px)
and (-webkit-min-device-pixel-ratio: 2) {
align-items: center;
flex-direction: column;
gap: $unit;
justify-content: center;
width: 100%;
// max-width: 447px;
}
select {
flex-grow: 1;
width: auto;
}
.JobDetails {
box-sizing: border-box;
display: flex;
flex-direction: column;
width: 100%;
.JobName {
align-items: center;
display: flex;
gap: $unit-half;
padding: $unit 0 $unit * 2;
h3 {
font-size: $font-medium;
font-weight: $medium;
}
img {
width: $unit-4x;
}
}
select {
flex-grow: 0;
}
.JobSkills {
flex-grow: 2;
}
}
.JobSkills {
display: flex;
flex-direction: column;
&:not(.editable) {
gap: $unit;
}
}
}