master
Boris Voropaev 2024-06-19 16:23:11 +03:00
parent 86423b49e0
commit f0c9dc54a1
6 changed files with 14 additions and 3 deletions

View File

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

View File

@ -76,12 +76,18 @@
.block{
overflow-y: scroll;
display: block;
position: fixed;
width: 100vw;
height: calc(100vh + 100px);
z-index: 1000;
.card{
width: auto;
border-radius: 0;
max-width: 600px;
margin: auto;
padding-bottom: 130px;
}
}
}
}

BIN
src/assets/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 162 KiB

BIN
src/assets/favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 481 B

5
src/assets/favicon.svg Normal file
View File

@ -0,0 +1,5 @@
<svg width="192" height="192" viewBox="0 0 192 192" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="192" height="192" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M168 120V168H120V156H156V120H168ZM168 72V24H120V36H156V72H168ZM72 36V24H24V72H36V36H72ZM72 156H36V120H24V168H72V156Z" fill="#585858"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M60 60H84V84H108V60H132V84V108V132H108V108H84V132H60V108V84V60Z" fill="#585858"/>
</svg>

After

Width:  |  Height:  |  Size: 468 B

View File

@ -5,7 +5,7 @@
<title>Render</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="icon" type="image/x-icon" href="assets/favicon.svg">
</head>
<body>
<app-root></app-root>