mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-14 13:19:05 +03:00
9f10ed373c
# 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):
34 lines
713 B
SCSS
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;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|