mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-14 05:05:09 +03:00
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;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|