responsive
This commit is contained in:
parent
c09a3b7b56
commit
042c52ef80
4 changed files with 21 additions and 7 deletions
|
|
@ -124,7 +124,12 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="middle-spacer"><div class="line"></div></div>
|
<div class="middle-spacer"><div class="line"></div></div>
|
||||||
<div class="right-side">
|
<div class="right-side">
|
||||||
<div class="date">
|
<div
|
||||||
|
class="date"
|
||||||
|
[ngStyle]="{
|
||||||
|
'margin-top': overlayMobile ? '28px' : ''
|
||||||
|
}"
|
||||||
|
>
|
||||||
<p>Due date<span class="red-dot">*</span></p>
|
<p>Due date<span class="red-dot">*</span></p>
|
||||||
<input
|
<input
|
||||||
type="date"
|
type="date"
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@ section {
|
||||||
}
|
}
|
||||||
|
|
||||||
.edit-task-overlay-content-mobile {
|
.edit-task-overlay-content-mobile {
|
||||||
height: calc(100% - 24px);
|
height: 100%;
|
||||||
padding: 0 6px;
|
padding: 0 6px;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
background-color: var(--very-light-gray);
|
background-color: var(--very-light-gray);
|
||||||
|
|
@ -125,7 +125,8 @@ p {
|
||||||
|
|
||||||
.assigned-badget {
|
.assigned-badget {
|
||||||
display: flex;
|
display: flex;
|
||||||
margin-top: 6px;
|
align-items: center;
|
||||||
|
margin: 6px;
|
||||||
height: 40px;
|
height: 40px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -276,7 +277,7 @@ p {
|
||||||
.form-buttons {
|
.form-buttons {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: end;
|
justify-content: end;
|
||||||
padding-top: 12px;
|
padding: 12px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*------------- RESPONSIVE -------------*/
|
/*------------- RESPONSIVE -------------*/
|
||||||
|
|
@ -289,7 +290,7 @@ p {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 750px) {
|
@media screen and (max-width: 1050px) {
|
||||||
.btn-text {
|
.btn-text {
|
||||||
span {
|
span {
|
||||||
display: block;
|
display: block;
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.overlay-mobile {
|
.overlay-mobile {
|
||||||
height: calc(100% - 24px);
|
height: 100%;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -15,3 +15,11 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: right;
|
justify-content: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*------------- RESPONSIVE -------------*/
|
||||||
|
|
||||||
|
@media screen and (max-width: 1050px) {
|
||||||
|
.overlay {
|
||||||
|
width: calc(100vw - 124px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.overlay-mobile {
|
.overlay-mobile {
|
||||||
height: calc(100% - 24px);
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.header {
|
.header {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue