2024-01-23 04:37:45 +03:00
|
|
|
@use "@/styles/Colors.module.scss";
|
|
|
|
@use "@/styles/IconSizes.module.scss";
|
2024-02-02 22:50:09 +03:00
|
|
|
@use "@/styles/Radius.module.scss";
|
2024-01-23 04:37:45 +03:00
|
|
|
@use "@/styles/ScreenSizes.module.scss";
|
|
|
|
@use "@/styles/Spacings.module.scss";
|
|
|
|
@use "@/styles/Typography.module.scss";
|
|
|
|
@use "@/styles/Variables.module.scss";
|
2024-01-20 07:34:30 +03:00
|
|
|
|
2024-02-07 03:05:07 +03:00
|
|
|
.main_container {
|
|
|
|
position: relative;
|
2024-01-23 04:37:45 +03:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2024-01-20 07:34:30 +03:00
|
|
|
|
2024-02-07 03:05:07 +03:00
|
|
|
.page_header {
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search_page_container {
|
|
|
|
background-color: Colors.$white;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2024-01-23 04:37:45 +03:00
|
|
|
display: flex;
|
2024-02-07 03:05:07 +03:00
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2024-01-23 04:37:45 +03:00
|
|
|
flex-direction: column;
|
2024-01-20 07:34:30 +03:00
|
|
|
|
2024-02-07 03:05:07 +03:00
|
|
|
.main_wrapper {
|
2024-01-23 04:37:45 +03:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2024-02-07 03:05:07 +03:00
|
|
|
row-gap: Spacings.$spacing05;
|
|
|
|
width: 50%;
|
|
|
|
margin-inline: auto;
|
|
|
|
transform: translateY(-#{Variables.$searchBarHeight});
|
2024-01-20 07:34:30 +03:00
|
|
|
|
2024-02-07 03:05:07 +03:00
|
|
|
@media (max-width: ScreenSizes.$small) {
|
|
|
|
width: 100%;
|
|
|
|
padding-inline: Spacings.$spacing07;
|
|
|
|
}
|
2024-01-20 07:34:30 +03:00
|
|
|
|
2024-02-07 03:05:07 +03:00
|
|
|
.quivr_logo_wrapper {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
.quivr_text {
|
|
|
|
@include Typography.Big;
|
|
|
|
|
|
|
|
.quivr_text_primary {
|
|
|
|
color: Colors.$primary;
|
|
|
|
}
|
2024-01-20 07:34:30 +03:00
|
|
|
}
|
2024-01-23 04:37:45 +03:00
|
|
|
}
|
2024-01-20 07:34:30 +03:00
|
|
|
}
|
2024-01-23 04:37:45 +03:00
|
|
|
|
2024-02-07 03:05:07 +03:00
|
|
|
.shortcuts_card_wrapper {
|
|
|
|
background-color: Colors.$lightest-grey;
|
|
|
|
padding: Spacings.$spacing05;
|
2024-02-02 22:50:09 +03:00
|
|
|
gap: Spacings.$spacing03;
|
2024-02-07 03:05:07 +03:00
|
|
|
border-radius: Radius.$big;
|
2024-02-02 22:50:09 +03:00
|
|
|
|
2024-02-07 03:05:07 +03:00
|
|
|
.shortcut_wrapper {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: Spacings.$spacing03;
|
|
|
|
|
|
|
|
.shortcut {
|
|
|
|
color: Colors.$primary;
|
|
|
|
}
|
2024-02-02 22:50:09 +03:00
|
|
|
}
|
|
|
|
}
|
2024-01-23 04:37:45 +03:00
|
|
|
}
|
|
|
|
}
|