diff --git a/src/app/management/newproduct/page.jsx b/src/app/management/newproduct/page.jsx
index 463bbb3..755bf75 100644
--- a/src/app/management/newproduct/page.jsx
+++ b/src/app/management/newproduct/page.jsx
@@ -47,7 +47,7 @@ export default function NewProductPage(){
{/* */}
{/* 설계의뢰 불러오기 팝업 */}
-
+ {/* */}
)
}
\ No newline at end of file
diff --git a/src/components/sub/management/newproduct/NewProductTable.jsx b/src/components/sub/management/newproduct/NewProductTable.jsx
index 4bac816..041e693 100644
--- a/src/components/sub/management/newproduct/NewProductTable.jsx
+++ b/src/components/sub/management/newproduct/NewProductTable.jsx
@@ -65,7 +65,9 @@ export default function NewProductTable(){
一次販売店名/ID *
-
+
+ 販売代理店または販売代理店IDを1文字以上入力してください。
+
@@ -88,7 +90,9 @@ export default function NewProductTable(){
二次販売店名/ID *
-
+
+ 販売代理店または販売代理店IDを1文字以上入力してください。
+
|
diff --git a/src/styles/_grid-detail.scss b/src/styles/_grid-detail.scss
index a673236..4cf9d3b 100644
--- a/src/styles/_grid-detail.scss
+++ b/src/styles/_grid-detail.scss
@@ -36,6 +36,9 @@
&:nth-child(2n){
background-color: #F7F9FA;
}
+ &.important_row{
+ background-color: #e7e7e7;
+ }
}
.ag-cell{
font-size: 13px;
diff --git a/src/styles/_table.scss b/src/styles/_table.scss
index a263110..5aa068d 100644
--- a/src/styles/_table.scss
+++ b/src/styles/_table.scss
@@ -105,6 +105,7 @@ table{
}
.tooltips{
+ position: relative;
display: block;
width: 14px;
height: 14px;
@@ -112,6 +113,10 @@ table{
background: url(../../public/static/images/sub/tooltips.svg)no-repeat center;
background-size: cover;
cursor: pointer;
+ span{
+ position: absolute;
+ white-space: nowrap;
+ }
}
}
|