Files
gpustack-ui/src/components/transition/index.less
T

46 lines
912 B
Plaintext

.transition-wrapper {
border-radius: 8px;
display: flex;
flex-direction: column;
overflow: hidden;
&.bordered {
border-width: var(--ant-line-width);
border-style: var(--ant-line-type);
border-color: var(--ant-color-border);
background-color: var(--color-white-1);
}
&.filled {
border-color: var(--ant-color-border);
.transition-content-wrapper {
background-color: var(--color-fill-1);
}
}
.header {
background-color: var(--color-fill-1);
cursor: pointer;
padding: 8px 16px;
}
.transition-content-wrapper {
overflow: hidden;
transition: all 300ms ease-in-out;
.transition-content {
height: max-content;
background-color: var(--color-white-1);
border-radius: var(--border-radius-base);
}
}
.ant-input {
&::-webkit-scrollbar-track {
width: 0 !important;
color: transparent;
}
}
}