You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
503 B
33 lines
503 B
@import '../split_pane_resizer.scss';
|
|
|
|
.new_add_task_wrap {
|
|
.split-pane-area{
|
|
height: calc(100vh - 121px);
|
|
}
|
|
}
|
|
.new_add_task_ctl{
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 56px;
|
|
// background: #333333;
|
|
background: rgba(18,28,36,1);
|
|
> button{
|
|
margin-right: 20px;
|
|
}
|
|
}
|
|
|
|
.quite_btn{
|
|
position: absolute;
|
|
right: 10px;
|
|
top: 15px;
|
|
margin-left: 30px;
|
|
color: #888888;
|
|
transition: all .3s;
|
|
cursor: pointer;
|
|
&:hover{
|
|
color: #5091FF;
|
|
}
|
|
}
|
|
|