mirror of
https://github.com/dbgate/dbgate
synced 2024-11-07 20:26:23 +00:00
index.html
This commit is contained in:
parent
eb4ecb4cf8
commit
dcfd6ee1dc
BIN
packages/web/public/favicon.ico
Normal file
BIN
packages/web/public/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 182 KiB |
Binary file not shown.
Before Width: | Height: | Size: 3.1 KiB |
@ -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>
|
BIN
packages/web/public/logo192.png
Normal file
BIN
packages/web/public/logo192.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 30 KiB |
BIN
packages/web/public/logo512.png
Normal file
BIN
packages/web/public/logo512.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 137 KiB |
25
packages/web/public/manifest.json
Normal file
25
packages/web/public/manifest.json
Normal 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"
|
||||
}
|
@ -379,6 +379,7 @@
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
user-select: none;
|
||||
overflow: hidden;
|
||||
}
|
||||
.table {
|
||||
position: absolute;
|
||||
|
@ -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';
|
||||
|
Loading…
Reference in New Issue
Block a user