58 lines
927 B
SCSS
58 lines
927 B
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);
|
|
}
|
|
|
|
.modal-project.active {
|
|
transform: scale(1);
|
|
}
|
|
|
|
.modal-project__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 {
|
|
margin-bottom: 10px;
|
|
}
|
|
}
|
|
|
|
.name-project {
|
|
margin-left: 10px;
|
|
border: none;
|
|
outline: none;
|
|
height: 100%;
|
|
width: 90%;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.create-project {
|
|
margin: 15px 0 0 0;
|
|
}
|
|
}
|