bugfix design
This commit is contained in:
parent
e9d2fa7ba9
commit
734ad53ff2
3 changed files with 12 additions and 8 deletions
|
|
@ -35,7 +35,7 @@ section {
|
|||
p {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
font-size: 61px;
|
||||
font-size: 52px;
|
||||
font-weight: 700;
|
||||
}
|
||||
}
|
||||
|
|
@ -100,7 +100,7 @@ section {
|
|||
height: 46px;
|
||||
}
|
||||
p {
|
||||
font-size: 50px;
|
||||
font-size: 42px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -63,19 +63,19 @@ section {
|
|||
}
|
||||
|
||||
.contact-formular {
|
||||
min-width: 0;
|
||||
min-width: 120%;
|
||||
input {
|
||||
width: 85%;
|
||||
width: 100%;
|
||||
font-size: 18px;
|
||||
width: unset;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 400px) {
|
||||
.contact-formular {
|
||||
width: 270px;
|
||||
width: fit-content;
|
||||
input {
|
||||
width: 80%;
|
||||
font-size: 16px;
|
||||
}
|
||||
.btn-delete {
|
||||
|
|
|
|||
|
|
@ -1,8 +1,12 @@
|
|||
<nav class="navbar">
|
||||
<div class="link btn-edit">
|
||||
<span (click)="openEditDialog()">{{ "contacts.edit1" | translate }}</span>
|
||||
<span (click)="openEditDialog()">{{
|
||||
"contacts.btnEdit1" | translate
|
||||
}}</span>
|
||||
</div>
|
||||
<div class="link btn-delete">
|
||||
<span (click)="deleteContact()">{{ "contacts.delete1" | translate }}</span>
|
||||
<span (click)="deleteContact()">{{
|
||||
"contacts.btnDelete1" | translate
|
||||
}}</span>
|
||||
</div>
|
||||
</nav>
|
||||
|
|
|
|||
Loading…
Reference in a new issue