qa: qa-svelte: auth ok

This commit is contained in:
nemunaire 2022-11-06 17:10:28 +01:00
commit ee080c0666
5 changed files with 123 additions and 1 deletions

View file

@ -0,0 +1,34 @@
<script>
import {
Container,
Styles,
} from 'sveltestrap';
import Header from '../components/Header.svelte';
</script>
<svelte:head>
<!--title>{$settings.title}</title-->
</svelte:head>
<Styles />
<Header />
<slot></slot>
<style>
:global(body) {
overflow-y: scroll;
}
:global(a.badge) {
text-decoration: none;
}
:global(.text-justify) {
text-align: justify;
}
:global(.niceborder) {
border-bottom-style: solid;
border-bottom-width: 5px !important;
border-bottom-color: #4eaee6;
}
</style>