-
+
+
+
-
- Password:
+
diff --git a/src/app.css b/src/app.css
index bcc7233..ee7a390 100644
--- a/src/app.css
+++ b/src/app.css
@@ -48,6 +48,13 @@ h1 {
text-align: center;
}
+div.container {
+ display: flex; /* Make the container a flex container */
+ justify-content: center; /* Center the items horizontally */
+ margin-bottom: 2em;
+}
+
+
button {
border-radius: 8px;
border: 1px solid transparent;
diff --git a/src/lib/DecryptButton.svelte b/src/lib/DecryptButton.svelte
new file mode 100644
index 0000000..e732f8e
--- /dev/null
+++ b/src/lib/DecryptButton.svelte
@@ -0,0 +1,94 @@
+
+
+
+
+
diff --git a/src/lib/EncryptButton.svelte b/src/lib/EncryptButton.svelte
index ded2d3f..cc8b937 100644
--- a/src/lib/EncryptButton.svelte
+++ b/src/lib/EncryptButton.svelte
@@ -1,15 +1,9 @@
+
-
diff --git a/src/lib/PasswordButton.svelte b/src/lib/PasswordButton.svelte
index 763abeb..ee874d2 100644
--- a/src/lib/PasswordButton.svelte
+++ b/src/lib/PasswordButton.svelte
@@ -18,6 +18,42 @@ function copyToClipboard() {
);
}
+function updatePassword(password) {
+ globalPassword.set(password)
+}
+
-
\ No newline at end of file
+
+
+
+ Password
+
+
\ No newline at end of file