Victor Batischev f738805d1e fix styles
2024-02-08 19:53:39 +03:00

147 lines
2.5 KiB
SCSS

.modal-layout {
z-index: 9999;
height: 100%;
width: 100%;
background-color: rgba(0, 0, 0, 0.8);
position: fixed;
top: 0;
left: 0;
display: flex;
align-items: center;
justify-content: center;
transform: scale(0);
&__content {
position: relative;
background: linear-gradient(180deg, #ffffff 0%, #ebebeb 100%);
border-radius: 10px;
padding: 25px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
.select-person {
align-items: start;
margin: 0;
padding: 0;
&__info {
font-size: 15px;
font-weight: 300;
margin: 12px 0 20px;
}
@media (max-width: 805px) {
row-gap: 0;
}
}
.invite__blocks {
display: flex;
column-gap: 20px;
span {
margin-top: 8px;
font-size: 15px;
font-weight: 300;
}
.add-person-block {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
}
.invite-person-block {
display: flex;
flex-direction: column;
align-items: center;
row-gap: 10px;
&__input {
margin: 0;
min-width: 240px;
height: 42px;
input {
height: 42px;
}
@media (max-width: 500px) {
min-width: auto;
}
}
&__btn {
margin: 0;
max-width: 190px;
width: 100%;
}
}
@media (max-width: 805px) {
flex-direction: column;
width: 100%;
span {
text-align: center;
margin: 5px 0;
}
.invite-person-block {
row-gap: 5px;
&__btn {
margin: 5px auto;
}
}
.add-person-btn {
margin: 10px auto 0;
}
}
}
.select__person {
display: flex;
flex-direction: column;
row-gap: 10px;
@media (max-width: 500px) {
padding: 10px;
}
}
}
.create-ticket-project {
padding: 0;
background: white;
}
.ck-editor {
width: 100% !important;
}
}
.modal-layout.active {
transform: scale(1);
}
.create-project,
.create-column,
.edit-project,
.add-worker,
.edit-column {
// background: linear-gradient(180deg, #fff 0%, #ebebeb 37.29%);
.title-project {
margin-top: 8px;
}
.button-add {
margin-top: 8px;
}
.exit {
top: 16px;
right: 15px;
}
}