Skip to content
This repository has been archived by the owner on Dec 23, 2023. It is now read-only.

Commit

Permalink
chore: reformat code
Browse files Browse the repository at this point in the history
  • Loading branch information
muety committed Dec 17, 2022
1 parent 5b17201 commit 0d10309
Show file tree
Hide file tree
Showing 32 changed files with 568 additions and 561 deletions.
2 changes: 1 addition & 1 deletion webui/.editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ root = true
[*]
charset = utf-8
indent_style = space
indent_size = 4
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
Expand Down
66 changes: 33 additions & 33 deletions webui/package.json
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
}
}
18 changes: 9 additions & 9 deletions webui/public/global.css
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;
}
201 changes: 100 additions & 101 deletions webui/public/images/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 12 additions & 12 deletions webui/public/index.html
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>
Loading

0 comments on commit 0d10309

Please sign in to comment.