* WIP: svelte menu * temp * temp * New menu svelte * Migration of report menu in svelte * Migration of registerCustomMenu for Menu in Svelte Refactor subMenuStore Suppression of old MenuScene and ReportMenu * Suppression of HTML files that aren't use anymore * fix deeployer * First pass on css * First pass on css * Second pass on css and reportMenu * Second pass on css and reportMenu * Second pass on css and reportMenu * Third pass on css and reportMenu * Correction following test * Contact page only if environment variable exist * Update service worker Signed-off-by: Gregoire Parant <g.parant@thecodingmachine.com> * Change requested * Change requested Co-authored-by: kharhamel <oognic@gmail.com> Co-authored-by: Gregoire Parant <g.parant@thecodingmachine.com>
15 lines
No EOL
286 B
Svelte
15 lines
No EOL
286 B
Svelte
<script lang="ts">
|
|
import {CONTACT_URL} from "../../Enum/EnvironmentVariable";
|
|
|
|
</script>
|
|
|
|
<iframe title="contact" src="{CONTACT_URL}"></iframe>
|
|
|
|
<style lang="scss">
|
|
iframe {
|
|
border: none;
|
|
height: calc(100% - 56px);
|
|
width: 100%;
|
|
margin: 0;
|
|
}
|
|
</style> |