mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-14 17:03:29 +03:00
fix(frontend): brain studio ui audit implem (#2800)
This commit is contained in:
parent
10bc945564
commit
f78464c941
@ -98,9 +98,9 @@ body.dark_mode {
|
||||
--background-blur: rgba(0, 0, 0, 0.9);
|
||||
|
||||
/* Borders */
|
||||
--border-0: var(--white-0);
|
||||
--border-1: var(--grey-2);
|
||||
--border-2: var(--grey-3);
|
||||
--border-0: var(--black-5);
|
||||
--border-1: var(--black-6);
|
||||
--border-2: var(--black-7);
|
||||
|
||||
/* Icons */
|
||||
--icon-0: var(--black-0);
|
||||
|
@ -1,7 +1,7 @@
|
||||
@use "styles/Spacings.module.scss";
|
||||
|
||||
.analytics_wrapper {
|
||||
padding: Spacings.$spacing06;
|
||||
padding-block: Spacings.$spacing06;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
||||
|
@ -1,7 +1,15 @@
|
||||
@use "styles/Radius.module.scss";
|
||||
@use "styles/BoxShadow.module.scss";
|
||||
@use "styles/Spacings.module.scss";
|
||||
|
||||
.knowledge_tab_wrapper {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
.knowledge_tab_container {
|
||||
padding-block: Spacings.$spacing05;
|
||||
|
||||
.knowledge_tab_wrapper {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
gap: Spacings.$spacing05;
|
||||
padding-block: Spacings.$spacing05;
|
||||
}
|
||||
}
|
||||
|
@ -32,28 +32,32 @@ export const KnowledgeTab = ({
|
||||
|
||||
if (allKnowledge.length === 0) {
|
||||
return (
|
||||
<div className={styles.knowledge_tab_wrapper}>
|
||||
<MessageInfoBox type="warning">
|
||||
This brain is empty! You can add knowledge by clicking on
|
||||
<QuivrButton
|
||||
label="Add knowledge"
|
||||
color="primary"
|
||||
iconName="add"
|
||||
onClick={() => setShouldDisplayFeedCard(true)}
|
||||
/>
|
||||
.
|
||||
</MessageInfoBox>
|
||||
<div className={styles.knowledge_tab_container}>
|
||||
<div className={styles.knowledge_tab_wrapper}>
|
||||
<MessageInfoBox type="warning">
|
||||
This brain is empty! You can add knowledge by clicking on
|
||||
<QuivrButton
|
||||
label="Add knowledge"
|
||||
color="primary"
|
||||
iconName="add"
|
||||
onClick={() => setShouldDisplayFeedCard(true)}
|
||||
/>
|
||||
.
|
||||
</MessageInfoBox>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
return (
|
||||
<div className={styles.knowledge_tab_wrapper}>
|
||||
<motion.div layout className="w-full flex flex-col gap-5">
|
||||
<AnimatePresence mode="popLayout">
|
||||
<KnowledgeTable knowledgeList={allKnowledge} />
|
||||
</AnimatePresence>
|
||||
</motion.div>
|
||||
<div className={styles.knowledge_tab_container}>
|
||||
<div className={styles.knowledge_tab_wrapper}>
|
||||
<motion.div layout className="w-full flex flex-col gap-5">
|
||||
<AnimatePresence mode="popLayout">
|
||||
<KnowledgeTable knowledgeList={allKnowledge} />
|
||||
</AnimatePresence>
|
||||
</motion.div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
@ -10,7 +10,7 @@
|
||||
border-radius: Radius.$normal;
|
||||
|
||||
.title {
|
||||
@include Typography.H3;
|
||||
@include Typography.H2;
|
||||
}
|
||||
|
||||
.table_header {
|
||||
|
@ -5,21 +5,23 @@
|
||||
|
||||
.people_tab_wrapper {
|
||||
display: flex;
|
||||
padding: Spacings.$spacing05;
|
||||
padding-block: Spacings.$spacing05;
|
||||
flex-direction: column;
|
||||
gap: Spacings.$spacing05;
|
||||
|
||||
.section_wrapper {
|
||||
border-radius: Radius.$big;
|
||||
background-color: var(--background-1);
|
||||
padding: Spacings.$spacing05;
|
||||
box-shadow: BoxShadow.$small;
|
||||
padding-block: Spacings.$spacing05;
|
||||
border-bottom: 1px solid var(--border-2);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: Spacings.$spacing05;
|
||||
|
||||
&.last {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.section_title {
|
||||
@include Typography.H3;
|
||||
@include Typography.H2;
|
||||
}
|
||||
|
||||
.buttons_wrapper {
|
||||
|
@ -61,7 +61,7 @@ export const PeopleTab = ({ brainId }: ShareBrainModalProps): JSX.Element => {
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
<div className={styles.section_wrapper}>
|
||||
<div className={`${styles.section_wrapper} ${styles.last}`}>
|
||||
<span className={styles.section_title}>Users with access</span>
|
||||
<BrainUsers brainId={brainId} />
|
||||
</div>
|
||||
|
@ -15,13 +15,11 @@
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
gap: Spacings.$spacing05;
|
||||
box-shadow: BoxShadow.$small;
|
||||
border-radius: Radius.$big;
|
||||
padding: Spacings.$spacing06;
|
||||
background-color: var(--background-1);
|
||||
border-bottom: 1px solid var(--border-2);
|
||||
padding-block: Spacings.$spacing05;
|
||||
|
||||
.section_title {
|
||||
@include Typography.H3;
|
||||
@include Typography.H2;
|
||||
}
|
||||
|
||||
.inputs_wrapper {
|
||||
@ -63,13 +61,11 @@
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
gap: Spacings.$spacing05;
|
||||
box-shadow: BoxShadow.$small;
|
||||
border-radius: Radius.$big;
|
||||
padding: Spacings.$spacing06;
|
||||
background-color: var(--background-1);
|
||||
padding-block: Spacings.$spacing05;
|
||||
|
||||
.section_title {
|
||||
@include Typography.H3;
|
||||
@include Typography.H2;
|
||||
}
|
||||
}
|
||||
}
|
@ -5,7 +5,7 @@
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: Spacings.$spacing05;
|
||||
padding: Spacings.$spacing06;
|
||||
padding-block: Spacings.$spacing06;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
flex-direction: column;
|
||||
gap: Spacings.$spacing07;
|
||||
width: auto;
|
||||
padding: Spacings.$spacing06;
|
||||
padding-block: Spacings.$spacing06;
|
||||
max-width: 700px;
|
||||
|
||||
.title {
|
||||
|
@ -12,7 +12,7 @@
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex: 1;
|
||||
border-bottom: 2px solid var(--border-0);
|
||||
border-bottom: 1px solid var(--border-2);
|
||||
padding-block: Spacings.$spacing03;
|
||||
cursor: pointer;
|
||||
box-sizing: border-box;
|
||||
@ -43,6 +43,7 @@
|
||||
display: flex;
|
||||
position: relative;
|
||||
gap: Spacings.$spacing02;
|
||||
font-size: Typography.$small;
|
||||
|
||||
.label_badge {
|
||||
border-radius: Radius.$circle;
|
||||
|
@ -4,7 +4,7 @@
|
||||
|
||||
.text_input_container {
|
||||
display: flex;
|
||||
border: 1px solid var(--border-0);
|
||||
border: 1px solid var(--border-2);
|
||||
gap: Spacings.$spacing03;
|
||||
padding-block: Spacings.$spacing02;
|
||||
padding-inline: Spacings.$spacing03;
|
||||
|
Loading…
Reference in New Issue
Block a user