mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-14 21:02:49 +00:00
79 lines
1.5 KiB
SCSS
Vendored
79 lines
1.5 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;
|
|
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%;
|
|
position: relative;
|
|
|
|
.project-permission-title {
|
|
font-weight: 500;
|
|
padding: 20px 0 10px 0;
|
|
}
|
|
|
|
.form-placeholder {
|
|
font-size: 12px;
|
|
color: #999;
|
|
}
|
|
}
|
|
|
|
.project-permission-footer {
|
|
flex-shrink: 0;
|
|
position: static;
|
|
padding: 16px 26px;
|
|
border-top: 1px solid #F4F4F5;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 16px;
|
|
|
|
button {
|
|
min-width: 120px;
|
|
height: 38px;
|
|
line-height: 36px;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
body.window-portrait {
|
|
.project-permission {
|
|
.project-permission-footer {
|
|
button {
|
|
width: 50%;
|
|
}
|
|
}
|
|
}
|
|
}
|