responsive

This commit is contained in:
Chneemann 2024-04-24 08:03:00 +02:00
parent d215ded33f
commit c99195ffdc
2 changed files with 34 additions and 1 deletions

View file

@ -5,7 +5,7 @@
class="headline" class="headline"
[ngStyle]="{ display: overlayData !== '' ? 'none' : 'block' }" [ngStyle]="{ display: overlayData !== '' ? 'none' : 'block' }"
> >
<div class="title">Add Tasks</div> <div class="title">Add Task</div>
</div> </div>
<form <form

View file

@ -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;
}
}
}