qa: qa-svelte: auth ok
This commit is contained in:
parent
0fe037d7f5
commit
ee080c0666
5 changed files with 123 additions and 1 deletions
34
qa/ui/src/routes/__layout.svelte
Normal file
34
qa/ui/src/routes/__layout.svelte
Normal 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>
|
||||
Reference in a new issue