diff --git a/src/components/floor-plan/modal/placementShape/PlacementShapeSetting.jsx b/src/components/floor-plan/modal/placementShape/PlacementShapeSetting.jsx
index 5439b303..c8efb5cb 100644
--- a/src/components/floor-plan/modal/placementShape/PlacementShapeSetting.jsx
+++ b/src/components/floor-plan/modal/placementShape/PlacementShapeSetting.jsx
@@ -228,19 +228,38 @@ export default function PlacementShapeSetting({ id, pos = { x: 50, y: 180 }, set
| {getMessage('modal.placement.initial.setting.roof.angle.setting')} |
-
+
{currentRoof &&
- roofAngleSetArray.map((item) => (
-
- setCurrentRoof({ ...currentRoof, roofAngleSet: e.target.value })}
- />
-
+ roofAngleSetArray.map((item, index) => (
+
))}
diff --git a/src/styles/_modal.scss b/src/styles/_modal.scss
index bbdf38f8..95db2ea7 100644
--- a/src/styles/_modal.scss
+++ b/src/styles/_modal.scss
@@ -523,6 +523,17 @@ $alert-color: #101010;
display: flex;
align-items: center;
gap: 10px;
+ &.place{
+ gap: 15px;
+ .outline-form{
+ span{
+ width: fit-content;
+ }
+ .input-grid{
+ width: 80px;
+ }
+ }
+ }
}
.placement-option{
display: flex;
|