Compare commits

..

No commits in common. "ae3087de14d23a6cca5fc684e70021bd0cf7a4d0" and "5f034c1652972f1e8754f4b63bb4ac099de2f135" have entirely different histories.

2 changed files with 17 additions and 17 deletions

View File

@ -127,8 +127,8 @@ export default function CircuitTrestleSetting({ id }) {
// roof polygon
const roofPolygons = canvas.getObjects().filter((obj) => obj.name === POLYGON_TYPE.ROOF)
let x, y
x = 0 //canvas.width / 2
y = 1000 //canvas.height / 2
x = canvas.width / 2
y = canvas.height / 2
/*if (roofPolygons.length > 0) {
let minX = Infinity,

View File

@ -150,7 +150,7 @@ $alert-color: #101010;
position: absolute;
top: 0;
left: 0;
width: 15px;
width: 5px;
height: 100%;
background-color: #000;
cursor: pointer;
@ -159,7 +159,7 @@ $alert-color: #101010;
position: absolute;
top: 0;
right: 0;
width: 15px;
width: 5px;
height: 100%;
background-color: #000;
cursor: pointer;
@ -235,7 +235,7 @@ $alert-color: #101010;
.modal-foot{
display: block;
width: 100%;
padding: 15px 0;
padding: 5px 0;
background-color: #000;
cursor: pointer;
}