Skip to content

Commit 28d2125

Browse files
committed
remove: client styling slop
1 parent 41b7166 commit 28d2125

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

client/src/lib/components/AccountCard.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
onerror={(e) => e.currentTarget.style.display = 'none'}
6565
/>
6666
{:else}
67-
<div class="w-10 h-10 bg-gradient-to-br from-purple-600 to-blue-600 rounded-lg flex items-center justify-center">
67+
<div class="w-10 h-10 bg-purple-600 rounded-lg flex items-center justify-center">
6868
<span class="text-white font-bold text-lg">{account.title.charAt(0).toUpperCase()}</span>
6969
</div>
7070
{/if}

client/src/lib/components/AccountModal.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@
277277
</button>
278278
<button
279279
type="submit"
280-
class="px-6 py-2.5 bg-purple-600 hover:bg-purple-700 text-white font-medium rounded-lg transition shadow-lg shadow-purple-500/30"
280+
class="px-6 py-2.5 bg-purple-600 hover:bg-purple-700 text-white font-medium rounded-lg transition"
281281
>
282282
{account ? 'Update' : 'Add'} Account
283283
</button>

client/src/routes/dashboard/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@
309309
</div>
310310
<button
311311
onclick={handle_adding_new_account_entry}
312-
class="px-6 py-3 bg-purple-600 hover:bg-purple-700 text-white font-medium rounded-lg transition duration-200 shadow-lg shadow-purple-500/30 flex items-center justify-center space-x-2"
312+
class="px-6 py-3 bg-purple-600 hover:bg-purple-700 text-white font-medium rounded-lg transition duration-200 flex items-center justify-center space-x-2"
313313
>
314314
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
315315
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 4v16m8-8H4" />

client/src/routes/login/+page.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
}
8282
</script>
8383

84-
<div class="min-h-screen bg-gradient-to-br from-slate-900 via-purple-900 to-slate-900">
84+
<div class="min-h-screen bg-slate-900">
8585
<!-- Login Page -->
8686
<div class="flex items-center justify-center min-h-screen px-4">
8787
<div class="w-full max-w-md">
@@ -137,7 +137,7 @@
137137
<button
138138
type="submit"
139139
disabled={loading}
140-
class="w-full py-3 bg-purple-600 hover:bg-purple-700 text-white font-medium rounded-lg transition duration-200 shadow-lg shadow-purple-500/50 disabled:opacity-50 disabled:cursor-not-allowed"
140+
class="w-full py-3 bg-purple-600 hover:bg-purple-700 text-white font-medium rounded-lg transition duration-200 disabled:opacity-50 disabled:cursor-not-allowed"
141141
>
142142
{loading ? 'Signing In...' : 'Sign In'}
143143
</button>

client/src/routes/register/+page.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
}
4444
</script>
4545

46-
<div class="min-h-screen bg-gradient-to-br from-slate-900 via-purple-900 to-slate-900">
46+
<div class="min-h-screen bg-slate-900">
4747
<div class="flex items-center justify-center min-h-screen px-4">
4848
<div class="w-full max-w-md">
4949
<div class="bg-slate-800/50 backdrop-blur-xl rounded-2xl shadow-2xl p-8 border border-slate-700">
@@ -112,7 +112,7 @@
112112
<button
113113
type="submit"
114114
disabled={loading}
115-
class="w-full py-3 bg-purple-600 hover:bg-purple-700 text-white font-medium rounded-lg transition duration-200 shadow-lg shadow-purple-500/50 disabled:opacity-50 disabled:cursor-not-allowed"
115+
class="w-full py-3 bg-purple-600 hover:bg-purple-700 text-white font-medium rounded-lg transition duration-200 disabled:opacity-50 disabled:cursor-not-allowed"
116116
>
117117
{loading ? 'Creating Account...' : 'Create Account'}
118118
</button>

0 commit comments

Comments
 (0)