|
|
|
@ -16,7 +16,37 @@ html {
|
|
|
|
|
|
|
|
|
|
|
|
#app {
|
|
|
|
#app {
|
|
|
|
display: flex;
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
height: 100vh;
|
|
|
|
height: 100vh;
|
|
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#main {
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
|
|
height: calc(100vh - 60px);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#header {
|
|
|
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
height: 60px;
|
|
|
|
|
|
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
|
|
|
|
|
|
color: #fff;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
padding: 0 20px;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#header > h1 {
|
|
|
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.panel-title {
|
|
|
|
|
|
|
|
width: 90%;
|
|
|
|
|
|
|
|
margin: 0 5%;
|
|
|
|
|
|
|
|
padding: 10px 0;
|
|
|
|
|
|
|
|
border-bottom: 2px solid #667eea;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Components panel */
|
|
|
|
/* Components panel */
|
|
|
|
@ -104,7 +134,7 @@ html {
|
|
|
|
cursor: pointer;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.save-container {
|
|
|
|
.save-container {
|
|
|
|
background: rgb(0, 123, 255, 1) !important;
|
|
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.action-btn .trash-container > span,
|
|
|
|
.action-btn .trash-container > span,
|
|
|
|
.action-btn .save-container > span {
|
|
|
|
.action-btn .save-container > span {
|
|
|
|
@ -115,11 +145,15 @@ html {
|
|
|
|
#canvas-panel {
|
|
|
|
#canvas-panel {
|
|
|
|
flex: 4;
|
|
|
|
flex: 4;
|
|
|
|
height: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background-color: #f9fafb;
|
|
|
|
background-color: #fff;
|
|
|
|
position: relative;
|
|
|
|
position: relative;
|
|
|
|
overflow-y: auto;
|
|
|
|
overflow-y: auto;
|
|
|
|
padding: 10px;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.grid-stack {
|
|
|
|
|
|
|
|
background-color: #f9fafb;
|
|
|
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
|
|
|
}
|
|
|
|
.grid-stack-item-content {
|
|
|
|
.grid-stack-item-content {
|
|
|
|
cursor: pointer;
|
|
|
|
cursor: pointer;
|
|
|
|
background: #fff;
|
|
|
|
background: #fff;
|
|
|
|
@ -154,12 +188,20 @@ html {
|
|
|
|
/* Props panel */
|
|
|
|
/* Props panel */
|
|
|
|
#props-panel {
|
|
|
|
#props-panel {
|
|
|
|
flex: 1;
|
|
|
|
flex: 1;
|
|
|
|
padding: 10px;
|
|
|
|
|
|
|
|
background-color: #fff;
|
|
|
|
background-color: #fff;
|
|
|
|
overflow-y: auto;
|
|
|
|
overflow-y: auto;
|
|
|
|
border-left: 1px solid #e0e0e0;
|
|
|
|
border-left: 1px solid #e0e0e0;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
form {
|
|
|
|
|
|
|
|
padding: 10px;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
|
|
|
}
|
|
|
|
.form-item {
|
|
|
|
.form-item {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|