bugfix design

This commit is contained in:
Chneemann 2024-05-17 19:58:37 +02:00
parent e9d2fa7ba9
commit 734ad53ff2
3 changed files with 12 additions and 8 deletions

View file

@ -35,7 +35,7 @@ section {
p { p {
width: 100%; width: 100%;
text-align: center; text-align: center;
font-size: 61px; font-size: 52px;
font-weight: 700; font-weight: 700;
} }
} }
@ -100,7 +100,7 @@ section {
height: 46px; height: 46px;
} }
p { p {
font-size: 50px; font-size: 42px;
} }
} }
} }

View file

@ -63,19 +63,19 @@ section {
} }
.contact-formular { .contact-formular {
min-width: 0; min-width: 120%;
input { input {
width: 85%; width: 100%;
font-size: 18px; font-size: 18px;
width: unset;
} }
} }
} }
@media screen and (max-width: 400px) { @media screen and (max-width: 400px) {
.contact-formular { .contact-formular {
width: 270px; width: fit-content;
input { input {
width: 80%;
font-size: 16px; font-size: 16px;
} }
.btn-delete { .btn-delete {

View file

@ -1,8 +1,12 @@
<nav class="navbar"> <nav class="navbar">
<div class="link btn-edit"> <div class="link btn-edit">
<span (click)="openEditDialog()">{{ "contacts.edit1" | translate }}</span> <span (click)="openEditDialog()">{{
"contacts.btnEdit1" | translate
}}</span>
</div> </div>
<div class="link btn-delete"> <div class="link btn-delete">
<span (click)="deleteContact()">{{ "contacts.delete1" | translate }}</span> <span (click)="deleteContact()">{{
"contacts.btnDelete1" | translate
}}</span>
</div> </div>
</nav> </nav>