Files
gpustack-ui/src/pages/playground/style/model-item.less
T
2026-01-06 17:21:32 +08:00

35 lines
636 B
Plaintext

.model-item {
display: flex;
flex-direction: column;
border: 1px solid var(--ant-color-border);
border-radius: var(--border-radius-base);
height: 100%;
background-color: var(--color-white-1);
.header {
padding-inline: 2px 16px;
display: flex;
align-items: center;
justify-content: space-between;
height: 46px;
border-bottom: 1px solid var(--ant-color-border);
width: 100%;
.title {
max-width: min(100%, 230px);
min-width: min(120px, 32%);
}
}
.action {
display: flex;
align-items: center;
gap: 2px;
}
.content {
flex: 1;
padding: 16px;
}
}