diff --git a/src/app.css b/src/app.css
index 68114ee..b467223 100644
--- a/src/app.css
+++ b/src/app.css
@@ -12,6 +12,14 @@ body {
@apply font-body;
}
+input[type=text],
+input[type=email],
+input[type=password],
+textarea {
+ appearance: none;
+ -webkit-appearance: none;
+}
+
@supports(padding:max(0px)) {
body, header, footer {
padding-left: min(0vmin, env(safe-area-inset-left));
diff --git a/src/lib/components/AppBar.svelte b/src/lib/components/AppBar.svelte
index 658c8b2..329ed82 100644
--- a/src/lib/components/AppBar.svelte
+++ b/src/lib/components/AppBar.svelte
@@ -1,5 +1,5 @@
-
+
@@ -7,7 +7,7 @@
-
\ No newline at end of file
diff --git a/src/lib/components/HomeButton.svelte b/src/lib/components/HomeButton.svelte
index 1ee0689..ef1e15f 100644
--- a/src/lib/components/HomeButton.svelte
+++ b/src/lib/components/HomeButton.svelte
@@ -4,8 +4,7 @@
fill="none"
viewBox="0 0 24 24"
stroke-width="2"
- stroke="currentColor"
- class="w-6 h-6 lg:w-7 lg:h-7"
+ class="w-6 h-6 lg:w-8 lg:h-8 stroke-indigo-900"
>
$locale = otherLocale}
- class="btn btn-ghost btn-circle font-sans text-lg lg:text-xl"
+ class="btn btn-ghost btn-circle font-sans text-lg lg:text-2xl text-indigo-900"
aria-label="Language"
>
{otherLocale.toUpperCase()}
diff --git a/src/lib/views/MyListView/MyListView.svelte b/src/lib/views/MyListView/MyListView.svelte
index b408229..f128476 100644
--- a/src/lib/views/MyListView/MyListView.svelte
+++ b/src/lib/views/MyListView/MyListView.svelte
@@ -14,7 +14,7 @@
{#each $things as thing}
- {@const thingName = isSpanish ? thing.spanishName : thing.name}
+ {@const thingName = isSpanish ? thing.spanishName ?? thing.name : thing.name}
removeThing(thing.id)}
{thingName}