aboutsummaryrefslogtreecommitdiff
path: root/app/src/styles
diff options
context:
space:
mode:
authorParker <contact@pkrm.dev>2024-12-18 19:24:43 -0600
committerParker <contact@pkrm.dev>2024-12-18 19:24:43 -0600
commit1ae686480c084f3af897de138fc2af97f0c262d2 (patch)
treefc931891daef93de651290f4cfe5536a3e40c528 /app/src/styles
parent90b3e8add1f5d1b34c080517aec21d22c138583d (diff)
Remove `/create` - add directly to dashboard page
Diffstat (limited to 'app/src/styles')
-rw-r--r--app/src/styles/Create.module.css11
-rw-r--r--app/src/styles/Dashboard.module.css56
2 files changed, 55 insertions, 12 deletions
diff --git a/app/src/styles/Create.module.css b/app/src/styles/Create.module.css
deleted file mode 100644
index d8dbcb7..0000000
--- a/app/src/styles/Create.module.css
+++ /dev/null
@@ -1,11 +0,0 @@
-.createInput {
- display: block;
- margin: 10px auto;
- width: 470px;
- border-radius: 5px;
- padding: 15px;
- color: #ccc;
- background-color: #3b4148;
- border: none;
- font-size: 17px;
-} \ No newline at end of file
diff --git a/app/src/styles/Dashboard.module.css b/app/src/styles/Dashboard.module.css
index fbc1d6d..e87c414 100644
--- a/app/src/styles/Dashboard.module.css
+++ b/app/src/styles/Dashboard.module.css
@@ -5,6 +5,61 @@ body {
background-color: #2c3338;
}
+.createContainer {
+ margin: 25px auto 25px auto;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ width: 1000px;
+}
+
+.createContainer h1 {
+ font-size: 25px;
+ text-align: center;
+ width: 100%;
+ box-sizing: border-box;
+}
+
+.createContainer form {
+ display: flex;
+ gap: 10px;
+ width: 100%;
+}
+
+.createContainer form input {
+ display: block;
+ margin: 10px auto;
+ width: 60%;
+ box-sizing: border-box;
+ border-radius: 5px;
+ padding: 15px;
+ font-size: 17px;
+ color: #ccc;
+ background-color: #3b4148;
+ border: none;
+}
+
+.createContainer form button {
+ width: 40%;
+}
+
+.errorVisible {
+ visibility: visible;
+ color: #ee6161;
+ font-weight: 600;
+ word-wrap: break-word;
+ width: 100%;
+ text-align: center;
+ font-size: 17px;
+ margin: 0 auto;
+}
+
+.errorHidden {
+ visibility: hidden;
+ color: #ee6161;
+}
+
.loadingSpinner {
display: flex;
flex-direction: column;
@@ -56,7 +111,6 @@ table td {
.mainTable {
position: absolute;
- top: 150px;
left: 50%;
transform: translateX(-50%);
}