bugfix v2
parent
72c6fbe0b9
commit
fc0680bc82
|
|
@ -1,13 +1,13 @@
|
|||
<div class="contact">
|
||||
<h2 [innerText]="name"></h2>
|
||||
<h2>Юридический адрес</h2>
|
||||
<h2 *ngIf="legalAddress">Юридический адрес</h2>
|
||||
<p *ngIf="legalAddress" class="legal-address" [innerText]="legalAddress"></p>
|
||||
<h2>Фактический адрес</h2>
|
||||
<h2 *ngIf="locationAddress">Фактический адрес</h2>
|
||||
<p *ngIf="locationAddress" class="local-address" [innerText]="locationAddress"></p>
|
||||
<h2>Email</h2>
|
||||
<h2 *ngIf="email">Email</h2>
|
||||
<p *ngIf="email" class="email"><a href="mailto:{{email}}">{{email}}</a></p>
|
||||
<h2>Телефон</h2>
|
||||
<h2 *ngIf="phone">Телефон</h2>
|
||||
<p *ngIf="phone" class="phone" [innerText]="phone"></p>
|
||||
<h2>Информация</h2>
|
||||
<h2 *ngIf="description">Информация</h2>
|
||||
<div *ngIf="description" [innerHTML]="description"></div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,20 +1 @@
|
|||
.contact {
|
||||
|
||||
h2 {
|
||||
color: var(--second-act);
|
||||
font-family: PT Sans Narrow;
|
||||
font-size: 24px;
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
line-height: 32px; /* 133.333% */
|
||||
letter-spacing: 0.24px;
|
||||
margin-bottom: 0px;
|
||||
margin-top: 8px;
|
||||
}
|
||||
|
||||
p{
|
||||
margin-top: 24px;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -825,6 +825,27 @@ video-section{
|
|||
}
|
||||
}
|
||||
|
||||
.contact {
|
||||
|
||||
h2 {
|
||||
color: var(--second-act);
|
||||
font-family: PT Sans Narrow;
|
||||
font-size: 24px;
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
line-height: 32px; /* 133.333% */
|
||||
letter-spacing: 0.24px;
|
||||
margin-bottom: 0px;
|
||||
margin-top: 24px;
|
||||
}
|
||||
|
||||
p{
|
||||
margin-top: 16px;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
@media screen and (max-width: 767px) {
|
||||
.pagination {
|
||||
|
|
|
|||
Loading…
Reference in New Issue