84 lines
1.2 KiB
SCSS
84 lines
1.2 KiB
SCSS
.qqbot-account-config {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
height: 100%;
|
|
min-height: 0;
|
|
|
|
&__header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
min-height: 40px;
|
|
}
|
|
|
|
&__back {
|
|
display: inline-flex;
|
|
gap: 6px;
|
|
align-items: center;
|
|
padding-inline: 0;
|
|
}
|
|
|
|
&__back-icon {
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
|
|
&__title {
|
|
display: inline-flex;
|
|
gap: 8px;
|
|
align-items: center;
|
|
min-width: 0;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
&__card {
|
|
flex: 1;
|
|
min-height: 0;
|
|
}
|
|
|
|
&__card,
|
|
&__card > .ant-card-body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 0;
|
|
}
|
|
|
|
&__card > .ant-card-body {
|
|
flex: 1;
|
|
}
|
|
}
|
|
|
|
.qqbot-account-config-panel {
|
|
display: flex;
|
|
flex: 1;
|
|
flex-direction: column;
|
|
min-height: 0;
|
|
|
|
&__account {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
&__tabs {
|
|
flex: none;
|
|
}
|
|
|
|
&__content {
|
|
flex: 1;
|
|
min-height: 0;
|
|
}
|
|
|
|
&__ellipsis {
|
|
display: inline-block;
|
|
max-width: 100%;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
vertical-align: bottom;
|
|
}
|
|
}
|