aboutsummaryrefslogtreecommitdiff
path: root/src/components/Card.svelte
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2022-07-19 15:35:32 -0400
committerFurkan Sahin <furkan-dev@proton.me>2022-07-19 15:35:32 -0400
commit309f893dbcf50e021588111c6644848cf177373b (patch)
tree4c23d4d81a7a1221993bf580082a8987c9c5d7cf /src/components/Card.svelte
parent39feeb74ffad85ba038e70773eba30385155c950 (diff)
Add option to export to DB, also make function to unmarshall/strigify a db object. See whether this function can instead be moved to the `DatabaseFile` interface, just like `UnmarshalJson` in `Go`
Diffstat (limited to 'src/components/Card.svelte')
-rw-r--r--src/components/Card.svelte2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Card.svelte b/src/components/Card.svelte
index a063e96..6b4b59e 100644
--- a/src/components/Card.svelte
+++ b/src/components/Card.svelte
@@ -3,7 +3,7 @@
export let desc = "";
</script>
-<div class="card w-96 bg-primary text-primary-content">
+<div class="card bg-primary text-primary-content">
<div class="card-body">
<h2 class="card-title">{title}</h2>
<p>{desc}</p>