mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-13 07:14:54 +03:00
e69c6debae
This pull request implements the turbo pack compiler feature. Simply run yarn run dev --turbo or npm run dev https://turbo.build/blog/turbopack-benchmarks --------- Co-authored-by: Zewed <dewez.antoine2@gmail.com> Co-authored-by: Stan Girard <stan@quivr.app>
44 lines
922 B
SCSS
44 lines
922 B
SCSS
@use "styles/Spacings.module.scss";
|
|
@use "styles/Typography.module.scss";
|
|
|
|
.current_brain_wrapper {
|
|
background-color: var(--background-2);
|
|
padding-inline: Spacings.$spacing05;
|
|
padding-block: Spacings.$spacing01;
|
|
font-size: Typography.$small;
|
|
color: var(--text-1);
|
|
|
|
.brain_infos {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
overflow: hidden;
|
|
|
|
.left {
|
|
display: flex;
|
|
gap: Spacings.$spacing02;
|
|
align-items: center;
|
|
@include Typography.EllipsisOverflow;
|
|
|
|
.title {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.brain_name_wrapper {
|
|
display: flex;
|
|
gap: Spacings.$spacing02;
|
|
align-items: center;
|
|
overflow: hidden;
|
|
|
|
.dark_image {
|
|
filter: invert(100%);
|
|
}
|
|
|
|
.brain_name {
|
|
color: var(--text-3);
|
|
@include Typography.EllipsisOverflow;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |