diff --git a/index.html b/index.html
index f895f87..5d43b14 100644
--- a/index.html
+++ b/index.html
@@ -1,5 +1,5 @@
-
+
diff --git a/src/reprocess/Reprocess.vue b/src/reprocess/Reprocess.vue
index 45aba06..4bf4aa0 100644
--- a/src/reprocess/Reprocess.vue
+++ b/src/reprocess/Reprocess.vue
@@ -19,7 +19,7 @@ const send = async () => result.value = await reprocess(items.value, minerals.va
@@ -27,7 +27,7 @@ const send = async () => result.value = await reprocess(items.value, minerals.va
- Send
+ Send
diff --git a/src/reprocess/ReprocessInput.vue b/src/reprocess/ReprocessInput.vue
index 5322aa4..cb4e538 100644
--- a/src/reprocess/ReprocessInput.vue
+++ b/src/reprocess/ReprocessInput.vue
@@ -38,7 +38,7 @@ const loadFromId = async (e: Event) => {
- {{ name }}
-
+ {{ name }}
+
\ No newline at end of file
diff --git a/src/reprocess/ReprocessResultTable.vue b/src/reprocess/ReprocessResultTable.vue
index ce6080e..9f5310b 100644
--- a/src/reprocess/ReprocessResultTable.vue
+++ b/src/reprocess/ReprocessResultTable.vue
@@ -1,6 +1,7 @@
-
+
- Item
- Buy
- Buy reprocess
- Sell
- Sell reprocess
+ Item
+ Buy
+ Buy reprocess
+ Sell
+ Sell reprocess
-
- {{ r.typeID }}
- {{ iskFormater.format(r.buy) }}
- {{ iskFormater.format(r.buy_reprocess) }} ({{percentFormater.format(r.buy_ratio)}})
- {{ iskFormater.format(r.sell) }}
- {{ iskFormater.format(r.sell_reprocess) }} ({{percentFormater.format(r.sell_ratio)}})
+
+ {{ r.typeID }}
+ {{ iskFormater.format(r.buy) }}
+ {{ iskFormater.format(r.buy_reprocess) }} ({{percentFormater.format(r.buy_ratio)}})
+ {{ iskFormater.format(r.sell) }}
+ {{ iskFormater.format(r.sell_reprocess) }} ({{percentFormater.format(r.sell_ratio)}})
diff --git a/src/style.css b/src/style.css
index b5c61c9..f0122dc 100644
--- a/src/style.css
+++ b/src/style.css
@@ -1,3 +1,44 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
+
+@layer base {
+ * {
+ @apply border-slate-600 text-slate-100 placeholder-slate-400;
+ }
+
+ body {
+ @apply bg-slate-800;
+ }
+
+ button {
+ @apply py-0.5 px-2 border rounded bg-slate-600 hover:bg-slate-800;
+ }
+ input {
+ @apply border bg-slate-500 rounded px-1;
+ }
+ textarea {
+ @apply border rounded bg-slate-500 w-full;
+ }
+
+ table {
+ @apply table-auto border-collapse border-slate-500 w-full;
+ }
+ th {
+ @apply border bg-slate-600 px-1;
+ }
+ td {
+ @apply border px-1;
+ }
+
+ ::-webkit-scrollbar {
+ @apply w-3;
+ }
+ ::-webkit-scrollbar-track {
+ @apply bg-slate-500;
+ }
+ ::-webkit-scrollbar-thumb {
+ @apply bg-slate-600 hover:bg-slate-800;
+ border-radius: 5px;
+ }
+}
\ No newline at end of file