d
This commit is contained in:
Binary file not shown.
@@ -12,6 +12,20 @@
|
|||||||
--background: #0a0a0a;
|
--background: #0a0a0a;
|
||||||
--foreground: #ededed;
|
--foreground: #ededed;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
input {
|
||||||
|
background-color: #222; /* 입력 필드 배경 어두운 회색 */
|
||||||
|
color: #fff; /* 입력 필드 텍스트 흰색 */
|
||||||
|
border: 1px solid #444; /* 테두리 어두운 회색 */
|
||||||
|
padding: 5px;
|
||||||
|
border-radius: 4px; /* 둥근 모서리 */
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 입력 필드 포커스 시 스타일 */
|
||||||
|
input:focus {
|
||||||
|
outline: none;
|
||||||
|
border-color: #555; /* 포커스 시 테두리 색상 변경 */
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
|
|||||||
@@ -37,7 +37,6 @@ export default function Home() {
|
|||||||
Greet(person)
|
Greet(person)
|
||||||
.then(result => {
|
.then(result => {
|
||||||
setResult(result)
|
setResult(result)
|
||||||
|
|
||||||
})
|
})
|
||||||
.catch(err => {
|
.catch(err => {
|
||||||
console.error(err)
|
console.error(err)
|
||||||
|
|||||||
Reference in New Issue
Block a user