mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-18 11:51:41 +03:00
d0b8b797f6
Co-authored-by: Zewed <dewez.antoine2@gmail.com> Co-authored-by: Antoine Dewez <44063631+Zewed@users.noreply.github.com>
43 lines
1.0 KiB
SCSS
43 lines
1.0 KiB
SCSS
@use '@/styles/Colors.module.scss';
|
|
@use '@/styles/IconSizes.module.scss';
|
|
@use '@/styles/ScreenSizes.module.scss';
|
|
@use '@/styles/Spacings.module.scss';
|
|
@use '@/styles/Typography.module.scss';
|
|
|
|
.search_page_container {
|
|
background-color: Colors.$ivory;
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
.main_container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
row-gap: Spacings.$spacing05;
|
|
position: relative;
|
|
width: 50vw;
|
|
margin-inline: auto;
|
|
|
|
@media (max-width: ScreenSizes.$small) {
|
|
width: 100%;
|
|
margin-inline: Spacings.$spacing07;
|
|
}
|
|
|
|
.quivr_logo_wrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
.quivr_text {
|
|
@include Typography.H1;
|
|
|
|
.quivr_text_primary {
|
|
color: Colors.$primary;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |