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

View File

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