Style iframe using normal SCSS

This commit is contained in:
Christian Wolf 2024-01-07 15:53:59 +01:00
parent 8d41136787
commit 164d114bfb
2 changed files with 8 additions and 1 deletions

View File

@ -700,6 +700,13 @@ h1 {
}
}
.iframe-generic {
display: block;
width: 100%;
height: 800px;
max-height: 75vh;
}
@font-face{
font-family: 'Open Sans Condensed';
font-style: normal;

View File

@ -1 +1 @@
<iframe src="{{ .Inner }}" frameborder="0" style="display: block; width: 100%; height: 800px;"></iframe>
<iframe src="{{ .Inner }}" frameborder="0" class="iframe-generic"></iframe>