* fix: UI RAG & tools do not support for remote models * chore: update dependencies hooks
42 lines
725 B
SCSS
42 lines
725 B
SCSS
.tabs {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
|
|
&__list {
|
|
flex-shrink: 0;
|
|
display: flex;
|
|
border-bottom: 1px solid hsla(var(--app-border));
|
|
}
|
|
|
|
&__trigger {
|
|
padding: 0 12px;
|
|
flex: 1;
|
|
height: 38px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
line-height: 1;
|
|
user-select: none;
|
|
&:focus {
|
|
position: relative;
|
|
}
|
|
&:disabled {
|
|
cursor: not-allowed;
|
|
opacity: 0.5;
|
|
}
|
|
}
|
|
|
|
&__content {
|
|
flex-grow: 1;
|
|
border-bottom-left-radius: 6px;
|
|
border-bottom-right-radius: 6px;
|
|
outline: none;
|
|
}
|
|
}
|
|
|
|
.tabs__trigger[data-state='active'] {
|
|
border-bottom: 1px solid hsla(var(--primary-bg));
|
|
font-weight: 600;
|
|
}
|