mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-29 16:14:42 +00:00
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;
|
||
|
|
}
|