jan/joi/src/core/Tabs/styles.scss
Faisal Amir fb01216ae2
fix: disabled UI RAG and tools (#3514)
* fix: UI RAG & tools do not support for remote models

* chore: update dependencies hooks
2024-09-05 09:54:03 +07:00

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;
}