diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2022-07-19 15:35:32 -0400 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2022-07-19 15:35:32 -0400 |
| commit | 309f893dbcf50e021588111c6644848cf177373b (patch) | |
| tree | 4c23d4d81a7a1221993bf580082a8987c9c5d7cf /src/components/Card.svelte | |
| parent | 39feeb74ffad85ba038e70773eba30385155c950 (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.svelte | 2 |
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> |
