소스 검색

fix: timestamp styling

Timothy J. Baek 1 년 전
부모
커밋
cf88652aa8
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      src/lib/components/chat/Messages/ResponseMessage.svelte
  2. 1 1
      src/lib/components/chat/Messages/UserMessage.svelte

+ 1 - 1
src/lib/components/chat/Messages/ResponseMessage.svelte

@@ -222,7 +222,7 @@
 			{/if}
 
 			{#if message.timestamp}
-				<span class=" invisible group-hover:visible text-gray-400 text-xs font-normal">
+				<span class=" invisible group-hover:visible text-gray-400 text-xs font-medium">
 					{dayjs(message.timestamp * 1000).format('DD/MM/YYYY HH:MM')}
 				</span>
 			{/if}

+ 1 - 1
src/lib/components/chat/Messages/UserMessage.svelte

@@ -65,7 +65,7 @@
 				{/if}
 
 				{#if message.timestamp}
-					<span class=" invisible group-hover:visible text-gray-400 text-xs font-normal">
+					<span class=" invisible group-hover:visible text-gray-400 text-xs font-medium">
 						{dayjs(message.timestamp * 1000).format('DD/MM/YYYY HH:MM')}
 					</span>
 				{/if}