This repository has been archived by the owner on Dec 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
32 changed files
with
568 additions
and
561 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,35 @@ | ||
{ | ||
"name": "svelte-app", | ||
"version": "1.0.0", | ||
"license": "MIT", | ||
"scripts": { | ||
"build": "rollup -c --bundleConfigAsCjs", | ||
"dev": "rollup -c -w --bundleConfigAsCjs" | ||
}, | ||
"devDependencies": { | ||
"@rollup/plugin-commonjs": "^23.0.5", | ||
"@rollup/plugin-node-resolve": "^15.0.1", | ||
"@rollup/plugin-replace": "^5.0.1", | ||
"rollup": "^3.7.5", | ||
"rollup-plugin-css-only": "^4.3.0", | ||
"rollup-plugin-dev": "^2.0.4", | ||
"rollup-plugin-livereload": "^2.0.0", | ||
"rollup-plugin-svelte": "^7.0.0", | ||
"rollup-plugin-terser": "^7.0.0", | ||
"svelte": "^3.0.0", | ||
"svelte-preprocess": "^5.0.0" | ||
}, | ||
"dependencies": { | ||
"autoprefixer": "^10.2.5", | ||
"page": "^1.11.6", | ||
"postcss": "^8.2.8", | ||
"svelte-click-outside": "^1.0.0", | ||
"tailwindcss": "^3.2.4" | ||
}, | ||
"engines": { | ||
"node": ">=16.19.0" | ||
}, | ||
"prettier": { | ||
"semi": false | ||
} | ||
"name": "svelte-app", | ||
"version": "1.0.0", | ||
"license": "MIT", | ||
"scripts": { | ||
"build": "rollup -c --bundleConfigAsCjs", | ||
"dev": "rollup -c -w --bundleConfigAsCjs" | ||
}, | ||
"devDependencies": { | ||
"@rollup/plugin-commonjs": "^23.0.5", | ||
"@rollup/plugin-node-resolve": "^15.0.1", | ||
"@rollup/plugin-replace": "^5.0.1", | ||
"rollup": "^3.7.5", | ||
"rollup-plugin-css-only": "^4.3.0", | ||
"rollup-plugin-dev": "^2.0.4", | ||
"rollup-plugin-livereload": "^2.0.0", | ||
"rollup-plugin-svelte": "^7.0.0", | ||
"rollup-plugin-terser": "^7.0.0", | ||
"svelte": "^3.0.0", | ||
"svelte-preprocess": "^5.0.0" | ||
}, | ||
"dependencies": { | ||
"autoprefixer": "^10.2.5", | ||
"page": "^1.11.6", | ||
"postcss": "^8.2.8", | ||
"svelte-click-outside": "^1.0.0", | ||
"tailwindcss": "^3.2.4" | ||
}, | ||
"engines": { | ||
"node": ">=16.19.0" | ||
}, | ||
"prettier": { | ||
"semi": false | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
html { | ||
position: relative; | ||
width: 100%; | ||
height: 100%; | ||
color: var(--color-text) | ||
position: relative; | ||
width: 100%; | ||
height: 100%; | ||
color: var(--color-text) | ||
} | ||
|
||
body { | ||
position: relative; | ||
width: 100%; | ||
height: 100%; | ||
padding: 20px; | ||
} | ||
position: relative; | ||
width: 100%; | ||
height: 100%; | ||
padding: 20px; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset='utf-8'> | ||
<meta name='viewport' content='width=device-width,initial-scale=1'> | ||
<head> | ||
<meta charset='utf-8'> | ||
<meta name='viewport' content='width=device-width,initial-scale=1'> | ||
|
||
<title>MailWhale WebUI</title> | ||
<title>MailWhale WebUI</title> | ||
|
||
<link rel='icon' type='image/png' href='/favicon.png'> | ||
<link rel='stylesheet' href='/global.css'> | ||
<link rel='stylesheet' href='/build/bundle.css'> | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons"> <!-- TODO: self-host --> | ||
<link rel='icon' type='image/png' href='/favicon.png'> | ||
<link rel='stylesheet' href='/global.css'> | ||
<link rel='stylesheet' href='/build/bundle.css'> | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons"> <!-- TODO: self-host --> | ||
|
||
<script defer src='/build/bundle.js'></script> | ||
</head> | ||
<script defer src='/build/bundle.js'></script> | ||
</head> | ||
|
||
<body class="flex flex-col"> | ||
</body> | ||
<body class="flex flex-col"> | ||
</body> | ||
</html> |
Oops, something went wrong.