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

MovieEdit 등록 버튼 style 변경

parent 3411474d
import Search from "../Search";
import MovieTable from "../MovieTable";
import Pagination from "../Pagination";
import styles from "./admin.module.scss";
const MovieEdit = () => {
return (
......@@ -12,7 +13,7 @@ const MovieEdit = () => {
<div className="d-flex flex-wrap">
<Pagination />
<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>
</>
......
......@@ -26,4 +26,14 @@
.textarea {
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