76 lines
1.1 KiB
Plaintext
76 lines
1.1 KiB
Plaintext
.play-ground {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
|
|
.left {
|
|
position: relative;
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
width: 391px;
|
|
|
|
.collapse-btn {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 1;
|
|
}
|
|
|
|
transition: width 0.3s ease;
|
|
|
|
&.collapse {
|
|
width: 33px;
|
|
padding-left: 32px;
|
|
overflow: hidden;
|
|
transition: width 0.3s ease;
|
|
}
|
|
}
|
|
|
|
.chat {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.params {
|
|
overflow: hidden;
|
|
height: calc(100vh - 136px);
|
|
|
|
.collapse {
|
|
width: 0;
|
|
overflow: hidden;
|
|
}
|
|
}
|
|
|
|
.params-box {
|
|
padding-inline: 32px;
|
|
height: 100%;
|
|
width: 390px;
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
|
|
&.collapse {
|
|
padding-inline: 0;
|
|
}
|
|
}
|
|
|
|
.divider-line {
|
|
width: 1px;
|
|
|
|
&.collapse {
|
|
width: 0;
|
|
transition: width 0.3s ease;
|
|
}
|
|
|
|
.ant-divider {
|
|
margin: 0;
|
|
height: calc(100vh - 136px);
|
|
}
|
|
}
|
|
}
|
|
|
|
.playground-container {
|
|
.ant-pro-page-container-children-container {
|
|
padding-right: 0;
|
|
}
|
|
}
|