Skip to content

Commit 70be8b3

Browse files
committed
styling
1 parent 1cb76ae commit 70be8b3

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/routes/+page.svelte

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@
233233
<div class="flex flex-col space-y-2">
234234
<button
235235
on:click={() => setActiveView('canvas')}
236-
class="flex items-center py-3 px-4 text-sm font-medium transition-all duration-200 rounded-lg {activeView === 'canvas' ? 'text-[#2e3438] bg-[#e3f2fd] border border-[#F87701]' : 'text-[#73828c] hover:text-[#2e3438] hover:bg-[#f6f9fc]'}"
236+
class="flex items-center py-3 px-4 text-sm font-medium transition-all duration-200 rounded-lg {activeView === 'canvas' ? 'text-[#2e3438] bg-[#e3f2fd] border border-[#F87701]' : 'text-[#73828c] hover:text-[#2e3438] hover:bg-[#f6f9fc]'} !mb-3"
237237
>
238238
<div class="flex items-center justify-center mr-3">
239239
<span class="text-base">🎯</span>
@@ -242,7 +242,7 @@
242242
</button>
243243
<button
244244
on:click={() => setActiveView('docs')}
245-
class="flex items-center py-3 px-4 text-sm font-medium transition-all duration-200 rounded-lg {activeView === 'docs' ? 'text-[#2e3438] bg-[#e3f2fd] border border-[#F87701]' : 'text-[#73828c] hover:text-[#2e3438] hover:bg-[#f6f9fc]'}"
245+
class="flex items-center py-3 px-4 text-sm font-medium transition-all duration-200 rounded-lg {activeView === 'docs' ? 'text-[#2e3438] bg-[#e3f2fd] border border-[#F87701]' : 'text-[#73828c] hover:text-[#2e3438] hover:bg-[#f6f9fc]'} !mb-3"
246246
>
247247
<div class="flex items-center justify-center mr-3">
248248
<span class="text-base">📖</span>
@@ -251,7 +251,7 @@
251251
</button>
252252
<button
253253
on:click={() => setActiveView('events')}
254-
class="flex items-center py-3 px-4 text-sm font-medium transition-all duration-200 rounded-lg {activeView === 'events' ? 'text-[#2e3438] bg-[#e3f2fd] border border-[#F87701]' : 'text-[#73828c] hover:text-[#2e3438] hover:bg-[#f6f9fc]'}"
254+
class="flex items-center py-3 px-4 text-sm font-medium transition-all duration-200 rounded-lg {activeView === 'events' ? 'text-[#2e3438] bg-[#e3f2fd] border border-[#F87701]' : 'text-[#73828c] hover:text-[#2e3438] hover:bg-[#f6f9fc]'} !mb-3"
255255
>
256256
<div class="flex items-center justify-center mr-3">
257257
<span class="text-base">🔍</span>
@@ -260,7 +260,7 @@
260260
</button>
261261
<button
262262
on:click={() => setActiveView('source')}
263-
class="flex items-center py-3 px-4 text-sm font-medium transition-all duration-200 rounded-lg {activeView === 'source' ? 'text-[#2e3438] bg-[#e3f2fd] border border-[#F87701]' : 'text-[#73828c] hover:text-[#2e3438] hover:bg-[#f6f9fc]'}"
263+
class="flex items-center py-3 px-4 text-sm font-medium transition-all duration-200 rounded-lg {activeView === 'source' ? 'text-[#2e3438] bg-[#e3f2fd] border border-[#F87701]' : 'text-[#73828c] hover:text-[#2e3438] hover:bg-[#f6f9fc]'} !mb-3"
264264
>
265265
<div class="flex items-center justify-center mr-3">
266266
<span class="text-base">💻</span>
@@ -283,7 +283,7 @@
283283
<div class="rounded-xl border-2 transition-all duration-200 mb-3">
284284
<div class="flex items-center justify-between">
285285
<div class="flex items-center">
286-
<div class="w-8 h-8 rounded-lg flex items-center justify-center mr-3 transition-colors duration-200">
286+
<div class="h-8 rounded-lg flex items-center justify-center mr-3 transition-colors duration-200">
287287
<span class="text-sm {selectedDataset === 'basic' ? 'text-white' : 'text-[#64748b]'}">📋</span>
288288
</div>
289289
<div class="text-left">
@@ -305,7 +305,7 @@
305305
<div class="rounded-xl border-2 transition-all duration-200 shadow-md' : 'border-[#e2e8f0] bg-white hover:border-[#cbd5e1] hover:shadow-sm'} mb-3">
306306
<div class="flex items-center justify-between">
307307
<div class="flex items-center">
308-
<div class="w-8 h-8 rounded-lg flex items-center justify-center mr-3 transition-colors duration-200">
308+
<div class="h-8 rounded-lg flex items-center justify-center mr-3 transition-colors duration-200">
309309
<span class="text-sm {selectedDataset === 'large' ? 'text-white' : 'text-[#64748b]'}">📈</span>
310310
</div>
311311
<div class="text-left">
@@ -327,7 +327,7 @@
327327
<div class="rounded-xl border-2 transition-all duration-200 mb-3">
328328
<div class="flex items-center justify-between">
329329
<div class="flex items-center">
330-
<div class="w-8 h-8 rounded-lg flex items-center justify-center mr-3 transition-colors duration-200">
330+
<div class="h-8 rounded-lg flex items-center justify-center mr-3 transition-colors duration-200">
331331
<span class="text-sm {selectedDataset === 'mixed' ? 'text-white' : 'text-[#64748b]'}">🎨</span>
332332
</div>
333333
<div class="text-left">

0 commit comments

Comments
 (0)