diff --git a/frontend/src/components/StorageRow.tsx b/frontend/src/components/StorageRow.tsx
index 42acf29..630d83c 100644
--- a/frontend/src/components/StorageRow.tsx
+++ b/frontend/src/components/StorageRow.tsx
@@ -44,7 +44,7 @@ export const StorageRow = ({ storage }: StorageRowProps) => {
(values.description ?? "") !== (storage.description ?? "");
return (
-
|
{(field) => (
@@ -53,6 +53,8 @@ export const StorageRow = ({ storage }: StorageRowProps) => {
onChange={(e) => field.handleChange(e.target.value)}
onBlur={field.handleBlur}
size="sm"
+ variant="outlined"
+ className="rounded-xl bg-white/90 shadow-[0_8px_18px_rgba(15,23,42,0.06)]"
/>
)}
@@ -65,27 +67,41 @@ export const StorageRow = ({ storage }: StorageRowProps) => {
onChange={(e) => field.handleChange(e.target.value)}
onBlur={field.handleBlur}
size="sm"
+ variant="outlined"
+ className="rounded-xl bg-white/90 shadow-[0_8px_18px_rgba(15,23,42,0.06)]"
/>
)}
|
- {formatDate(storage.created_at)} |
- {formatDate(storage.updated_at)} |
+
+ {formatDate(storage.created_at)}
+ |
+
+ {formatDate(storage.updated_at)}
+ |
-
-
+
+
+
+
|
);
diff --git a/frontend/src/components/modals/AddStorageModal.tsx b/frontend/src/components/modals/AddStorageModal.tsx
index eebf46d..101e24e 100644
--- a/frontend/src/components/modals/AddStorageModal.tsx
+++ b/frontend/src/components/modals/AddStorageModal.tsx
@@ -59,16 +59,20 @@ export const AddStorageModal = (props: AddStorageModalProps) => {
return (
<>