Browse Source

refac: styling

Timothy J. Baek 9 months ago
parent
commit
3c03d5069d
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/lib/components/layout/Sidebar.svelte

+ 2 - 2
src/lib/components/layout/Sidebar.svelte

@@ -424,7 +424,7 @@
 				<div class="px-3.5 mb-1 flex gap-0.5 flex-wrap">
 				<div class="px-3.5 mb-1 flex gap-0.5 flex-wrap">
 					<button
 					<button
 						class="px-2.5 py-[1px] text-xs transition {selectedTagName === null
 						class="px-2.5 py-[1px] text-xs transition {selectedTagName === null
-							? 'bg-gray-850'
+							? 'bg-gray-900'
 							: ' '} rounded-md"
 							: ' '} rounded-md"
 						on:click={async () => {
 						on:click={async () => {
 							selectedTagName = null;
 							selectedTagName = null;
@@ -436,7 +436,7 @@
 					{#each $tags.filter((t) => t.name !== 'pinned') as tag}
 					{#each $tags.filter((t) => t.name !== 'pinned') as tag}
 						<button
 						<button
 							class="px-2.5 py-[1px] text-xs transition {selectedTagName === tag.name
 							class="px-2.5 py-[1px] text-xs transition {selectedTagName === tag.name
-								? 'bg-gray-850'
+								? 'bg-gray-900'
 								: ''}  rounded-md"
 								: ''}  rounded-md"
 							on:click={async () => {
 							on:click={async () => {
 								selectedTagName = tag.name;
 								selectedTagName = tag.name;