quivr/frontend/lib/components/CurrentBrain/CurrentBrain.module.scss
Antoine Dewez 9f10ed373c
feat(frontend): display which brain you are talking to (#2137)
# Description

Please include a summary of the changes and the related issue. Please
also include relevant motivation and context.

## Checklist before requesting a review

Please delete options that are not relevant.

- [ ] My code follows the style guidelines of this project
- [ ] I have performed a self-review of my code
- [ ] I have commented hard-to-understand areas
- [ ] I have ideally added tests that prove my fix is effective or that
my feature works
- [ ] New and existing unit tests pass locally with my changes
- [ ] Any dependent changes have been merged

## Screenshots (if appropriate):
2024-02-02 11:50:09 -08:00

34 lines
713 B
SCSS

@use "@/styles/Colors.module.scss";
@use "@/styles/Spacings.module.scss";
@use "@/styles/Typography.module.scss";
.current_brain_wrapper {
background-color: Colors.$lightest-grey;
padding-inline: Spacings.$spacing05;
padding-block: Spacings.$spacing01;
font-size: Typography.$small;
color: Colors.$normal-grey;
.brain_infos {
display: flex;
justify-content: space-between;
align-items: center;
.left {
display: flex;
gap: Spacings.$spacing02;
align-items: center;
.brain_name_wrapper {
display: flex;
gap: Spacings.$spacing02;
align-items: center;
.brain_name {
color: Colors.$black;
}
}
}
}
}