72 lines
1.3 KiB
SCSS
72 lines
1.3 KiB
SCSS
.modal-project {
|
|
z-index: 9;
|
|
height: 100%;
|
|
width: 100%;
|
|
background-color: rgba(0, 0, 0, 0.11);
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
transform: scale(0);
|
|
|
|
&__content {
|
|
padding: 15px;
|
|
background: #ffffff;
|
|
border: 1px solid #dde2e4;
|
|
border-radius: 8px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
|
|
.title-project {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
|
|
.input-container {
|
|
width: 220px;
|
|
height: 25px;
|
|
border-radius: 44px;
|
|
border: 1px solid #d1d1d1;
|
|
}
|
|
|
|
h4 {
|
|
color: #111112;
|
|
margin-bottom: 10px;
|
|
font-size: 14px !important;
|
|
}
|
|
}
|
|
|
|
.name-project {
|
|
margin-left: 10px;
|
|
border: none;
|
|
outline: none;
|
|
height: 100%;
|
|
width: 90%;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.create-project {
|
|
margin: 15px 0 0 0;
|
|
width: 188px;
|
|
height: 40px;
|
|
background: #52b709;
|
|
border-radius: 44px;
|
|
border: none;
|
|
font-weight: 400;
|
|
font-size: 15px;
|
|
line-height: 32px;
|
|
color: #ffffff;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
}
|
|
}
|
|
|
|
.modal-project.active {
|
|
transform: scale(1);
|
|
}
|