Commit 14156ac9 authored by Kim, Subin's avatar Kim, Subin
Browse files

select focus style 변경

parent 229f8a70
......@@ -39,7 +39,7 @@ const StudyPlanEditForm = () => {
return (
<div className="pt-5">
<select className="form-select mb-4" aria-label="Default select example">
<select className={`form-select mb-4 ${styles.selectInput}`} aria-label="Choose subject">
<option selected>관련 과목을 선택해주세요.</option>
<option value="1">운영체제</option>
<option value="2">네트워크 프로그래밍 실습</option>
......
......@@ -29,6 +29,13 @@
}
}
.selectInput {
&:focus {
box-shadow: none;
border-color: crimson;
}
}
.textArea {
resize: none;
border: 1px solid #000;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment