Skip to content

Commit 9d13a89

Browse files
authored
Merge pull request #8 from Rabbit-Company/dev
v8.0.0
2 parents 4005ae6 + ad38c3a commit 9d13a89

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+8298
-6566
lines changed

package-lock.json

+31-50
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "passky-website",
33
"description": "Website for Passky (password manager)",
4-
"version": "7.1.0",
4+
"version": "8.0.0",
55
"main": "tailwind.config.js",
66
"scripts": {
7-
"build": "npx tailwindcss -i ./tailwind.css -o ./website/css/tailwind.min.css"
7+
"build": "npx tailwindcss -i ./tailwind.css -o ./website/css/tailwind.min.css --minify"
88
},
99
"repository": {
1010
"type": "git",
@@ -17,6 +17,6 @@
1717
},
1818
"homepage": "https://github.com/Rabbit-Company/Passky-Website#readme",
1919
"devDependencies": {
20-
"tailwindcss": "^3.1.8"
20+
"tailwindcss": "^3.2.4"
2121
}
2222
}

website/404.html

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<!doctype html>
2+
<html class="h-full">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Error 404</title>
6+
<meta name="description" content="Error 404 page" />
7+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
8+
<link rel="stylesheet" type="text/css" href="/css/tailwind.min.css">
9+
</head>
10+
<body class="h-full">
11+
<div class="min-h-full bg-gray-800 px-4 py-16 sm:px-6 sm:py-24 md:grid md:place-items-center lg:px-8">
12+
<div class="mx-auto max-w-max">
13+
<main class="sm:flex">
14+
<p class="text-4xl font-bold tracking-tight text-indigo-600 sm:text-5xl">404</p>
15+
<div class="sm:ml-6">
16+
<div class="sm:border-l sm:border-gray-200 sm:pl-6">
17+
<h1 class="text-4xl font-bold tracking-tight text-white sm:text-5xl">Page not found</h1>
18+
<p class="mt-1 text-base text-gray-100">Please check the URL in the address bar and try again.</p>
19+
</div>
20+
<div class="mt-10 flex space-x-3 sm:border-l sm:border-transparent sm:pl-6">
21+
<a href="https://passky.org" class="inline-flex items-center rounded-md border border-transparent bg-indigo-600 px-4 py-2 text-sm font-medium text-white shadow-sm hover:bg-indigo-700 focus:outline-none">Go back home</a>
22+
<a href="https://passky.org/contact" class="inline-flex items-center rounded-md border border-transparent bg-indigo-100 px-4 py-2 text-sm font-medium text-indigo-700 hover:bg-indigo-200 focus:outline-none">Contact support</a>
23+
</div>
24+
</div>
25+
</main>
26+
</div>
27+
</div>
28+
</body>
29+
</html>

website/_headers

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
X-Content-Type-Options: nosniff
44
Referrer-Policy: no-referrer
55
X-XSS-Protection: 1; mode=block
6-
Content-Security-Policy: script-src 'self' 'unsafe-inline' https://storage.googleapis.com/; frame-ancestors 'none';
6+
Content-Security-Policy: script-src 'self' 'unsafe-inline' https://storage.googleapis.com/; base-uri 'none'; object-src 'none'; form-action 'self'; frame-ancestors 'none'; worker-src 'self' blob:;
77
Permissions-Policy: interest-cohort=()

website/css/export.css

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,37 @@
11
::-webkit-scrollbar {
2-
width: 8px;
2+
width: 8px;
33
}
44

55
body{
6-
min-width: 500px;
7-
min-height: 500px;
8-
overflow-x: hidden;
6+
min-width: 500px;
7+
min-height: 500px;
8+
overflow-x: hidden;
99
}
1010

1111
#passky-logo{
12-
background-color: #e6f5ff;
12+
background-color: #e6f5ff;
1313
}
1414

1515
#bitwarden-logo{
16-
background-color: #3c8dbc;
16+
background-color: #3c8dbc;
1717
}
1818

1919
#lastpass-logo{
20-
background-color: #d12f2e;
20+
background-color: #d12f2e;
2121
}
2222

2323
#dashline-logo{
24-
background-color: #0e353d;
24+
background-color: #0e353d;
2525
}
2626

2727
#onepassword-logo{
28-
background-color: #fff;
28+
background-color: #fff;
2929
}
3030

3131
#keeper-logo{
32-
background-color: #fff;
32+
background-color: #fff;
3333
}
3434

3535
#nordpass-logo{
36-
background-color: #d3f8f7;
36+
background-color: #d3f8f7;
3737
}

website/css/index.css

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
body{
2-
min-width: 300px;
2+
min-width: 300px;
33
}
44

55
input::-webkit-outer-spin-button,
66
input::-webkit-inner-spin-button{
7-
-webkit-appearance: none;
8-
margin: 0;
7+
-webkit-appearance: none;
8+
margin: 0;
99
}
1010

1111
input[type=number]{
12-
-moz-appearance: textfield;
12+
-moz-appearance: textfield;
1313
}

website/css/passwords.css

+14-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,19 @@
11
::-webkit-scrollbar {
2-
width: 8px;
2+
width: 8px;
33
}
44

55
body{
6-
min-width: 500px;
7-
min-height: 500px;
8-
overflow-x: hidden;
6+
min-width: 500px;
7+
min-height: 500px;
8+
overflow-x: hidden;
9+
}
10+
11+
input::-webkit-outer-spin-button,
12+
input::-webkit-inner-spin-button{
13+
-webkit-appearance: none;
14+
margin: 0;
15+
}
16+
17+
input[type=number]{
18+
-moz-appearance: textfield;
919
}

website/css/settings.css

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
::-webkit-scrollbar {
2-
width: 8px;
2+
width: 8px;
33
}
44

55
body{
6-
min-width: 500px;
7-
min-height: 500px;
8-
overflow-x: hidden;
6+
min-width: 500px;
7+
min-height: 500px;
8+
overflow-x: hidden;
99
}
1010

1111
select{
12-
-webkit-appearance: none;
12+
-webkit-appearance: none;
1313
}

0 commit comments

Comments
 (0)