mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-16 18:52:12 +03:00
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;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|