diff --git a/egovframe-template-simple-react-contribution/src/App.js b/egovframe-template-simple-react-contribution/src/App.js index de4415a..8095686 100644 --- a/egovframe-template-simple-react-contribution/src/App.js +++ b/egovframe-template-simple-react-contribution/src/App.js @@ -7,6 +7,7 @@ import './css/layout.css'; import './css/component.css'; import './css/page.css'; import './css/response.css'; +import './css/Custom/customMain.css' function App() { diff --git a/egovframe-template-simple-react-contribution/src/constants/url.js b/egovframe-template-simple-react-contribution/src/constants/url.js index 220a62b..32ddaa5 100644 --- a/egovframe-template-simple-react-contribution/src/constants/url.js +++ b/egovframe-template-simple-react-contribution/src/constants/url.js @@ -76,10 +76,13 @@ const URL = { ADMIN_MANAGER : "/admin/manager/", // 사이트관리/사이트관리자 암호변경 기능 추가 2023.04.15(토) 김일국 //기준코드 - STANDARD_CODE_LIST : "/standardCode/list", //건설기준코드/리스트 + STANDARD_CODE_LIST : "/standardCode/list/:listCode", //건설기준코드/리스트 STANDARD_CODE_DETAIL : "/standardCode/detail", //건설기준코드/리스트 STANDARD_CODE_VIEWER : "/standardCode/viewer", //건설기준코드/뷰어 STANDARD_CODE_VIEWER_LINK : "/standardCode/viewer/:linkedDocCode", //건설기준코드/뷰어/새 창 링크 + + + } export default URL; \ No newline at end of file diff --git a/egovframe-template-simple-react-contribution/src/css/Custom/customMain.css b/egovframe-template-simple-react-contribution/src/css/Custom/customMain.css new file mode 100644 index 0000000..790c401 --- /dev/null +++ b/egovframe-template-simple-react-contribution/src/css/Custom/customMain.css @@ -0,0 +1,13 @@ +.mainbnt { + height: 35px; + line-height: 35px; + display: block; + background-color: #909090; + text-align: center; + border-radius: 13px; + color: white; + margin: 5px; +} +.mainbnt:hover{ + background-color: #212121; +} \ No newline at end of file diff --git a/egovframe-template-simple-react-contribution/src/pages/main/EgovMain.jsx b/egovframe-template-simple-react-contribution/src/pages/main/EgovMain.jsx index 675d0c0..366602b0 100644 --- a/egovframe-template-simple-react-contribution/src/pages/main/EgovMain.jsx +++ b/egovframe-template-simple-react-contribution/src/pages/main/EgovMain.jsx @@ -107,45 +107,25 @@ function EgovMain(props) {
*/}