2024-06-18 19:00:19 +03:00
|
|
|
@use "styles/IconSizes.module.scss";
|
|
|
|
@use "styles/Radius.module.scss";
|
|
|
|
@use "styles/ScreenSizes.module.scss";
|
|
|
|
@use "styles/Spacings.module.scss";
|
|
|
|
@use "styles/Typography.module.scss";
|
|
|
|
@use "styles/Variables.module.scss";
|
|
|
|
@use "styles/ZIndexes.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 {
|
2024-03-21 10:01:21 +03:00
|
|
|
background-color: var(--background-0);
|
2024-02-07 03:05:07 +03:00
|
|
|
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 {
|
2024-03-21 10:01:21 +03:00
|
|
|
color: var(--primary-0);
|
2024-02-07 03:05:07 +03:00
|
|
|
}
|
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 {
|
2024-03-21 10:01:21 +03:00
|
|
|
background-color: var(--background-2);
|
2024-02-07 03:05:07 +03:00
|
|
|
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;
|
2024-03-04 22:22:02 +03:00
|
|
|
gap: Spacings.$spacing02;
|
2024-02-07 03:05:07 +03:00
|
|
|
|
|
|
|
.shortcut {
|
2024-03-21 10:01:21 +03:00
|
|
|
color: var(--primary-0);
|
2024-02-07 03:05:07 +03:00
|
|
|
}
|
2024-02-02 22:50:09 +03:00
|
|
|
}
|
|
|
|
}
|
2024-01-23 04:37:45 +03:00
|
|
|
}
|
|
|
|
}
|
2024-04-09 19:06:33 +03:00
|
|
|
|
|
|
|
.onboarding_overlay {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
z-index: ZIndexes.$overlay;
|
|
|
|
background-color: var(--background-blur);
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
|
2024-04-27 14:44:48 +03:00
|
|
|
.main_message_wrapper {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
|
|
|
|
.main_message {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
.bolder {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-04-09 19:06:33 +03:00
|
|
|
.first_brain_button {
|
|
|
|
position: absolute;
|
|
|
|
right: Spacings.$spacing07;
|
2024-04-24 15:37:59 +03:00
|
|
|
top: Spacings.$spacing04;
|
2024-04-09 19:06:33 +03:00
|
|
|
display: flex;
|
|
|
|
gap: Spacings.$spacing05;
|
|
|
|
}
|
2024-06-18 19:00:19 +03:00
|
|
|
}
|