feat: first commit
This commit is contained in:
69
src/components/job-manage-card/index.less
Normal file
69
src/components/job-manage-card/index.less
Normal file
@ -0,0 +1,69 @@
|
||||
@import '@/styles/common.less';
|
||||
@import '@/styles/variables.less';
|
||||
|
||||
.job-manage-card {
|
||||
width: 100%;
|
||||
height: 152px;
|
||||
.flex-row();
|
||||
padding: 24px 32px;
|
||||
background: #FFF;
|
||||
box-sizing: border-box;
|
||||
position: relative;
|
||||
|
||||
&::after {
|
||||
content: "";
|
||||
height: 2px;
|
||||
background: #00000026;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 32px;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
&:first-child {
|
||||
&::after {
|
||||
height: 0;
|
||||
}
|
||||
}
|
||||
|
||||
&__info {
|
||||
flex: 1;
|
||||
height: 100%;
|
||||
|
||||
&__title {
|
||||
max-width: 75vw;
|
||||
font-size: 32px;
|
||||
line-height: 48px;
|
||||
font-weight: 400;
|
||||
color: @blColor;
|
||||
.noWrap();
|
||||
}
|
||||
|
||||
&__location {
|
||||
max-width: 75vw;
|
||||
font-size: 28px;
|
||||
line-height: 40px;
|
||||
font-weight: 400;
|
||||
color: @blColorG1;
|
||||
margin-top: 16px;
|
||||
.noWrap();
|
||||
}
|
||||
}
|
||||
|
||||
&__status {
|
||||
height: 100%;
|
||||
.flex-row();
|
||||
font-size: 28px;
|
||||
line-height: 32px;
|
||||
font-weight: 400;
|
||||
color: @blColorG1;
|
||||
|
||||
&.open {
|
||||
color: @blHighlightColor;
|
||||
}
|
||||
|
||||
&.error {
|
||||
color: #FF5051;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user