index.html

This commit is contained in:
Jan Prochazka 2021-03-05 20:59:00 +01:00
parent eb4ecb4cf8
commit dcfd6ee1dc
8 changed files with 37 additions and 7 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 182 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -1,12 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width,initial-scale=1'>
<title>Svelte app</title>
<title>DbGate</title>
<meta name="theme-color" content="#000000" />
<meta name="description"
content="DbGate - web based opensource database administration tool for MS SQL, MySQL, Postgre SQL" />
<link rel='icon' type='image/png' href='/favicon.ico'>
<link rel="manifest" href="/manifest.json" />
<link rel='icon' type='image/png' href='/favicon.png'>
<link rel='stylesheet' href='/global.css'>
<link rel='stylesheet' href='/dimensions.css'>
<link rel='stylesheet' href='/bulma.css'>
@ -19,4 +25,5 @@
<body>
</body>
</html>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 137 KiB

View File

@ -0,0 +1,25 @@
{
"short_name": "DbGate",
"name": "DbGate database tool",
"icons": [
{
"src": "favicon.ico",
"sizes": "64x64 32x32 24x24 16x16",
"type": "image/x-icon"
},
{
"src": "logo192.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "logo512.png",
"type": "image/png",
"sizes": "512x512"
}
],
"start_url": ".",
"display": "standalone",
"theme_color": "#000000",
"background_color": "#ffffff"
}

View File

@ -379,6 +379,7 @@
right: 0;
bottom: 0;
user-select: none;
overflow: hidden;
}
.table {
position: absolute;

View File

@ -1,8 +1,5 @@
<script lang="ts">
import FormButton from '../forms/FormButton.svelte';
import FormProvider from '../forms/FormProvider.svelte';
import FormSubmit from '../forms/FormSubmit.svelte';
import TextAreaField from '../forms/TextAreaField.svelte';
import TextAreaField from '../forms/TextAreaField.svelte';
import FormStyledButton from '../widgets/FormStyledButton.svelte';
import ModalBase from './ModalBase.svelte';
import { closeCurrentModal } from './modalTools';