diff --git a/src/components/canvas/modal/placementsetting/PlacementSettingPop.jsx b/src/components/canvas/modal/placementsetting/PlacementSettingPop.jsx index 62ce0f1..d28e9be 100644 --- a/src/components/canvas/modal/placementsetting/PlacementSettingPop.jsx +++ b/src/components/canvas/modal/placementsetting/PlacementSettingPop.jsx @@ -156,14 +156,16 @@ export default function PlacementSettingPop(){ ファイルを読み込む
- +
+ + +
- - +
diff --git a/src/styles/_modal.scss b/src/styles/_modal.scss index 06713e5..361aa95 100644 --- a/src/styles/_modal.scss +++ b/src/styles/_modal.scss @@ -476,26 +476,29 @@ $alert-color: #101010; } } -.img-edit-btn{ +.img-edit-wrap{ flex: none; - display: flex; - align-items: center; - height: 30px; - padding: 0 10px; - font-size: 12px; - font-weight: 400; - color: #101010; - background-color: #fff; - border-radius: 2px; - .img-edit{ - width: 16px; - height: 16px; - background: url(../../public/static/images/canvas/img_edit_ico.svg)no-repeat center; - background-size: cover; - margin-right: 5px; - } - &:hover{ - background-color: #ebebeb; + .img-edit-btn{ + display: flex; + align-items: center; + height: 30px; + padding: 0 10px; + font-size: 12px; + font-weight: 400; + color: #101010; + background-color: #fff; + border-radius: 2px; + transition: all .15s ease-in-out; + .img-edit{ + width: 16px; + height: 16px; + background: url(../../public/static/images/canvas/img_edit_ico.svg)no-repeat center; + background-size: cover; + margin-right: 5px; + } + &:hover{ + background-color: #ebebeb; + } } } .img-name-wrap{ @@ -505,21 +508,17 @@ $alert-color: #101010; margin-left: 10px; input{ flex: 1; - margin-right: 5px; + } .img-check{ flex: none; width: 18px; height: 18px; + margin-left: 5px; background-repeat: no-repeat; background-position: center; background-size: cover; - &.suc{ - background-image: url(../../public/static/images/canvas/img_check_success.svg); - } - &.fail{ - background-image: url(../../public/static/images/canvas/img_check_fail.svg); - } + background-image: url(../../public/static/images/canvas/img_check_fail.svg); } }