mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-29 16:14:42 +00:00
* Signoz Cloud - Onboarding Flow - Getting Started page * Signoz Cloud - Onboarding Flow - Java lang setup flow * Signoz Cloud - Onboarding Flow - Wireup other lang docs for APM and create empty base component for other modules * Signoz Cloud - Onboarding Flow - remove try signoz cloud button, Update code background * Signoz Cloud - Onboarding Flow - Wire up all docs and modules * Signoz Cloud - Onboarding Flow - Integrate Intercom and other minor fixes * Signoz Cloud - Onboarding Flow - Logs Management - Update Connection Status component * Signoz Cloud - Onboarding Flow - Logs Management - Update light mode styles * Signoz Cloud - Onboarding Flow - Logs Management - Update Logs * Signoz Cloud - Update yarn.lock * Signoz Cloud - Delete Progress Steps component * Signoz Cloud - Poll for connection status, created common Header component * Signoz Cloud - Add polling to check connection status, update components to use common Header component * Signoz Cloud - Render onboarding only if feature flag is enabled * Signoz Cloud - Configure Logs Management Steps * Signoz Cloud - Update intercom snippet and set max width for onboarding flow container to 1440px * Signoz Cloud - Use andD card component for displaying modules * chore: first clean up * Signoz Cloud - Use ONBOARDING and CHAT_SUPPORT FF * Signoz Cloud - Update version check logic and fix minor css issues * fix: feature flag is updated * chore: docusaurus is removed * chore: docusaurus is removed * feat: signoz cloud - fix typecheck errors * feat: signoz cloud - enable chat support based on FF * feat: signoz cloud - fix type errors * feat: signoz cloud - fix type errors * feat: signoz cloud - update webpack config rules --------- Co-authored-by: Palash Gupta <palashgdev@gmail.com>
120 lines
1.6 KiB
SCSS
120 lines
1.6 KiB
SCSS
.container {
|
|
width: 100%;
|
|
max-width: 1440px;
|
|
margin: 0 auto;
|
|
|
|
&.darkMode {
|
|
}
|
|
|
|
&.lightMode {
|
|
.onboardingHeader {
|
|
color: #1d1d1d;
|
|
}
|
|
}
|
|
}
|
|
|
|
.moduleSelectContainer {
|
|
width: 100%;
|
|
}
|
|
|
|
.onboardingContainer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 16px;
|
|
text-align: center;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100%;
|
|
width: 100%;
|
|
color: #e5e7eb;
|
|
}
|
|
|
|
.onboardingHeader {
|
|
text-align: center;
|
|
margin-top: 48px;
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.onboardingHeader h1 {
|
|
font-size: 24px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.modulesContainer {
|
|
display: block;
|
|
padding: 24px;
|
|
}
|
|
|
|
.moduleContainerRowStyles {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
gap: 36px;
|
|
margin: 36px;
|
|
}
|
|
|
|
.moduleStyles {
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
cursor: pointer;
|
|
width: 400px;
|
|
|
|
.ant-card-body {
|
|
padding: 0px;
|
|
}
|
|
}
|
|
|
|
.moduleTitleStyle {
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
padding: 16px;
|
|
margin: 0px !important;
|
|
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.moduleStyles.selected {
|
|
border: 1px solid rgb(232, 112, 64, 0.6) !important;
|
|
|
|
.moduleTitleStyle {
|
|
border-bottom: 1px solid rgb(232, 112, 64, 0.6) !important;
|
|
}
|
|
}
|
|
|
|
.moduleDesc {
|
|
padding: 24px;
|
|
margin: 0px !important;
|
|
min-height: 100px;
|
|
}
|
|
|
|
.modules-container {
|
|
display: flex;
|
|
}
|
|
|
|
.continue-to-next-step {
|
|
display: flex;
|
|
justify-content: center;
|
|
margin: 48px 0;
|
|
}
|
|
|
|
.stepsContainer {
|
|
position: relative;
|
|
height: 100%;
|
|
padding: 48px;
|
|
}
|
|
|
|
.actionButtonsContainer {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding-bottom: 48px;
|
|
box-sizing: border-box;
|
|
bottom: 0;
|
|
}
|
|
|
|
.ant-steps-item-description {
|
|
font-size: 12px !important;
|
|
max-width: 100% !important;
|
|
}
|