From a7797c6c7c9fbe59ea2bfe8b2c889368b766a860 Mon Sep 17 00:00:00 2001 From: Henry-Hong Date: Fri, 21 Jun 2024 18:06:24 +0900 Subject: [PATCH] =?UTF-8?q?chore=20:=20=EC=B4=88=EA=B8=B0=EC=9D=91?= =?UTF-8?q?=EB=8B=B5=EC=97=90=20=EC=95=84=ED=82=A4=ED=85=8D=EC=B2=98=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80,=20mark=20=ED=83=9C=EA=B7=B8=20=EC=8A=A4?= =?UTF-8?q?=ED=83=80=EC=9D=BC=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/consts.ts | 8 +++++++- src/index.css | 9 +++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/src/consts.ts b/src/consts.ts index 6d60205..89680d8 100644 --- a/src/consts.ts +++ b/src/consts.ts @@ -6,7 +6,7 @@ export const INITIAL_CHAT: TypeChat<'me'> = { messages: [ { contentType: 'PlainText', - content: '안녕하세요! FrontEnd Engineer 홍희림입니다.', + content: '

안녕하세요! FrontEnd Engineer 홍희림입니다.

', }, { contentType: 'PlainText', @@ -22,6 +22,12 @@ export const INITIAL_CHAT: TypeChat<'me'> = { ], }, }, + { + contentType: 'ImageResponseCard', + imageResponseCard: { + buttons: [{ value: '시스템 구조', text: '어떻게 만들었어?' }], + }, + }, ], }, }; diff --git a/src/index.css b/src/index.css index b5c61c9..78a483b 100644 --- a/src/index.css +++ b/src/index.css @@ -1,3 +1,12 @@ @tailwind base; @tailwind components; @tailwind utilities; + +mark { + background-color: transparent; + font-weight: bold; + background-image: linear-gradient(90deg, #7dd3fc, #6ee7b7); + background-position: bottom; + background-size: 100% 30%; + background-repeat: no-repeat; +}