responsive
This commit is contained in:
parent
d215ded33f
commit
c99195ffdc
2 changed files with 34 additions and 1 deletions
|
|
@ -5,7 +5,7 @@
|
|||
class="headline"
|
||||
[ngStyle]="{ display: overlayData !== '' ? 'none' : 'block' }"
|
||||
>
|
||||
<div class="title">Add Tasks</div>
|
||||
<div class="title">Add Task</div>
|
||||
</div>
|
||||
|
||||
<form
|
||||
|
|
|
|||
|
|
@ -343,3 +343,36 @@ p {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 700px) {
|
||||
.btn-text {
|
||||
span {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
.content {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.right-side,
|
||||
.left-side {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 480px) {
|
||||
.btn-text {
|
||||
span {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.headline {
|
||||
margin-bottom: 24px;
|
||||
.title {
|
||||
font-size: 47px;
|
||||
font-weight: 700;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue