mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-31 08:10:21 +00:00
53 lines
1.1 KiB
SCSS
Vendored
53 lines
1.1 KiB
SCSS
Vendored
.project-permission {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
.permission-title {
|
|
color: $primary-title-color;
|
|
font-size: 20px;
|
|
font-weight: 500;
|
|
line-height: 1;
|
|
// style="font-weight: bold;line-height: 40px;"
|
|
padding: 20px 20px 24px;
|
|
display: flex;
|
|
align-items: center;
|
|
.title-icon {
|
|
display: flex;
|
|
align-items: center;
|
|
width: 14px;
|
|
height: 14px;
|
|
margin-left: 4px;
|
|
margin-top: 2px;
|
|
> i {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
}
|
|
.permission-content {
|
|
flex: 1;
|
|
padding: 0 25px;
|
|
overflow: auto;
|
|
margin-bottom: 20px;
|
|
height: 100%;
|
|
|
|
.project-permission-title{
|
|
font-weight: 500;
|
|
padding:20px 0 10px 0;
|
|
}
|
|
|
|
.ivu-form-item {
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.form-placeholder {
|
|
font-size: 12px;
|
|
color: #999;
|
|
}
|
|
}
|
|
|
|
}
|