master
Boris Voropaev 2024-06-21 16:48:35 +03:00
parent e8267eba5c
commit 225387d5ec
2 changed files with 11 additions and 1 deletions

View File

@ -2,7 +2,7 @@
<ng-content></ng-content> <ng-content></ng-content>
</div> </div>
<div class="block" [style.display]="hidden?'none':'block'"> <div class="block" [class.hidden]="hidden">
<form *ngIf="!success" [formGroup]="feedbackForm"> <form *ngIf="!success" [formGroup]="feedbackForm">
<div class="card"> <div class="card">
<h3>Обратная связь</h3> <h3>Обратная связь</h3>

View File

@ -5,6 +5,7 @@
} }
.block{ .block{
display: flex;
width: 100vw; width: 100vw;
height: 100vh; height: 100vh;
position:fixed; position:fixed;
@ -72,8 +73,13 @@
} }
.hidden{
display: none;
}
@media screen and (max-width: 1024px){ @media screen and (max-width: 1024px){
.block{ .block{
display: block;
overflow-y: scroll; overflow-y: scroll;
display: block; display: block;
position: fixed; position: fixed;
@ -89,5 +95,9 @@
padding-bottom: 130px; padding-bottom: 130px;
} }
} }
.hidden{
display: none;
}
} }