Commit 89732027 authored by Kim, Subin's avatar Kim, Subin
Browse files

MovieEdit 등록 버튼 style 변경

parent 3411474d
import Search from "../Search"; import Search from "../Search";
import MovieTable from "../MovieTable"; import MovieTable from "../MovieTable";
import Pagination from "../Pagination"; import Pagination from "../Pagination";
import styles from "./admin.module.scss";
const MovieEdit = () => { const MovieEdit = () => {
return ( return (
...@@ -12,7 +13,7 @@ const MovieEdit = () => { ...@@ -12,7 +13,7 @@ const MovieEdit = () => {
<div className="d-flex flex-wrap"> <div className="d-flex flex-wrap">
<Pagination /> <Pagination />
<div className="d-flex justify-content-end col-12 col-md-4 my-2"> <div className="d-flex justify-content-end col-12 col-md-4 my-2">
<button type="button" className="btn btn-dark" style={{ width: "5em" }}>등록</button> <button type="button" className={`btn btn-dark ${styles.customBtn}`}>등록</button>
</div> </div>
</div> </div>
</> </>
......
...@@ -27,3 +27,13 @@ ...@@ -27,3 +27,13 @@
.textarea { .textarea {
resize: none; resize: none;
} }
.customBtn {
width: 5em;
&:hover {
border-color: #FEDC00;
background-color: #FEDC00;
color: #000;
}
}
\ No newline at end of file
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