Skip to content

Commit

Permalink
chore: safari apperance bug
Browse files Browse the repository at this point in the history
  • Loading branch information
heypoom committed Sep 5, 2022
1 parent 3418efe commit bac9ce4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion fastspend-pwa/src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
>
<input
type="text"
class="focus:outline-none bg-neutral-900 text-white px-4 py-4 text-3xl font-extralight rounded-md shadow-xl text-center focus:shadow-blue-300 focus:shadow-xl focus:ring-4 focus:ring-offset-4 focus:ring-blue-300 focus:ring-opacity-50 w-full max-w-xs"
class="focus:outline-none bg-neutral-900 text-white px-4 py-4 text-3xl font-extralight rounded-md shadow-xl text-center focus:shadow-blue-300 focus:shadow-xl focus:ring-4 focus:ring-offset-4 focus:ring-blue-400 focus:ring-opacity-50 w-full max-w-xs"
class:error-input={error}
class:loading-input={loading}
bind:value={command}
Expand Down
4 changes: 4 additions & 0 deletions fastspend-pwa/src/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ body {
min-height: -webkit-fill-available;
}

input {
-webkit-appearance: none;
}

.error-input {
@apply bg-red-500 text-stone-100;
@apply focus:shadow-red-300 !important;
Expand Down

0 comments on commit bac9ce4

Please sign in to comment.