Skip to content

Commit 8f00541

Browse files
FaizFaiz
authored andcommitted
Project creation
1 parent e6613c8 commit 8f00541

5 files changed

Lines changed: 32 additions & 33 deletions

File tree

components/project-wizard/steps/AreaOfInterestStep.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,9 @@
4343
<div class="project-wizard-area-captured-copy">
4444
<app-icon
4545
variant="check_circle"
46-
size="18"
46+
size="20"
4747
no-margin
48+
class="mt-1"
4849
/>
4950
<div>
5051
<strong>Area of interest captured</strong>
@@ -243,7 +244,6 @@ function onFileDrop(event: DragEvent) {
243244
.project-wizard-step-title {
244245
margin: 0;
245246
color: $text-navy;
246-
font-family: var(--secondary-font-family);
247247
font-size: 1rem;
248248
font-weight: 700;
249249
line-height: 1.15;
@@ -331,8 +331,7 @@ function onFileDrop(event: DragEvent) {
331331
332332
.project-wizard-area-captured {
333333
display: flex;
334-
align-items: center;
335-
justify-content: space-between;
334+
flex-direction: column;
336335
gap: 1rem;
337336
padding: 0.95rem 1rem;
338337
background: #f3fcf8;
@@ -374,6 +373,7 @@ function onFileDrop(event: DragEvent) {
374373
color: $text-navy;
375374
background: #ffffff;
376375
border: 1px solid rgba($text-navy, 0.14);
376+
width: fit-content;
377377
}
378378
379379
.project-wizard-area-dropzone-shell {

components/project-wizard/steps/ProjectDetailsStep.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,6 @@ function findField(fieldId: ProjectWizardDetailsFieldId): ProjectWizardDetailsFi
143143
.project-wizard-step-title {
144144
margin: 0;
145145
color: $text-navy;
146-
font-family: var(--secondary-font-family);
147146
font-size: 1rem;
148147
font-weight: 700;
149148
line-height: 1.15;

components/project-wizard/steps/ReviewStep.vue

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,6 @@ function formatRole(role: WorkspaceRole) {
121121
.project-wizard-step-title {
122122
margin: 0;
123123
color: $text-navy;
124-
font-family: var(--secondary-font-family);
125124
font-size: 1rem;
126125
font-weight: 700;
127126
line-height: 1.15;
@@ -137,7 +136,7 @@ function formatRole(role: WorkspaceRole) {
137136
138137
.project-wizard-review-group {
139138
display: grid;
140-
gap: 1.25rem;
139+
gap: 25px;
141140
}
142141
143142
.project-wizard-review-item {
@@ -148,26 +147,25 @@ function formatRole(role: WorkspaceRole) {
148147
.project-wizard-review-item h3 {
149148
margin: 0;
150149
text-align: left;
151-
font-family: Lato, var(--primary-font-family), sans-serif;
152-
font-size: 1.125rem;
150+
font-size: 1rem;
153151
font-style: normal;
154152
font-weight: 600;
155153
line-height: 1.375rem;
156154
letter-spacing: 0;
157-
color: #1a1e3d;
155+
color: $text-navy;
158156
opacity: 1;
159157
}
160158
161159
.project-wizard-review-item p {
162160
margin: 0;
163161
text-align: left;
164162
font-family: Lato, var(--primary-font-family), sans-serif;
165-
font-size: 1.125rem;
163+
font-size: 1rem;
166164
font-style: normal;
167165
font-weight: 400;
168166
line-height: 1.625rem;
169167
letter-spacing: 0;
170-
color: #5a607b;
168+
color: $text-secondary;
171169
opacity: 1;
172170
}
173171
@@ -186,6 +184,10 @@ function formatRole(role: WorkspaceRole) {
186184
opacity: 1;
187185
}
188186
187+
.project-wizard-review-status span {
188+
font-size: 1rem;
189+
}
190+
189191
.project-wizard-review-validator-list {
190192
display: grid;
191193
gap: 0.55rem;
@@ -227,9 +229,8 @@ function formatRole(role: WorkspaceRole) {
227229
}
228230
229231
.project-wizard-review-instructions {
230-
color: #5a607b;
231-
font-family: Lato, var(--primary-font-family), sans-serif;
232-
font-size: 1.125rem;
232+
color: $text-secondary;
233+
font-size: 1rem;
233234
font-style: normal;
234235
font-weight: 400;
235236
line-height: 1.625rem;

components/project-wizard/steps/SettingsStep.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ function onReviewRequiredChange(event: Event) {
135135
136136
.project-wizard-step-settings {
137137
display: grid;
138-
gap: 1.4rem;
138+
gap: 30px;
139139
}
140140
141141
.project-wizard-step-header,
@@ -147,7 +147,6 @@ function onReviewRequiredChange(event: Event) {
147147
.project-wizard-step-title {
148148
margin: 0;
149149
color: $text-navy;
150-
font-family: var(--secondary-font-family);
151150
font-size: 1rem;
152151
font-weight: 700;
153152
line-height: 1.15;

pages/workspace/[id]/projects/create.vue

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -680,21 +680,23 @@ function formatProjectStatus(status: ProjectWizardCreateResult['status']) {
680680
@import "~/assets/scss/theme.scss";
681681
682682
.project-create-page {
683-
height: calc(100vh - #{$navbar-height});
684-
padding-top: 1rem !important;
685-
padding-bottom: 1rem !important;
683+
height: 100%;
684+
padding: 0px 0px;
685+
padding-top: 0px !important;
686+
padding-bottom: 0px !important;
686687
overflow: hidden;
687688
}
688689
689690
.project-create-shell {
690-
position: relative;
691+
position: absolute;
691692
display: grid;
692693
grid-template-rows: auto minmax(0, 1fr);
693694
height: 100%;
694-
background: #a9d3e6;
695-
border: 1px solid rgba($text-navy, 0.12);
696-
box-shadow: $box-shadow;
695+
background: #ffffff;
697696
overflow: hidden;
697+
width: 100%;
698+
top: 0px;
699+
z-index: 9999;
698700
}
699701
700702
.project-create-header {
@@ -704,9 +706,9 @@ function formatProjectStatus(status: ProjectWizardCreateResult['status']) {
704706
align-items: center;
705707
justify-content: space-between;
706708
gap: 1rem;
707-
padding: 1.2rem 1.5rem;
709+
padding: 15px 40px;
708710
background-color: #fff;
709-
border-bottom: 1px solid rgba($text-navy, 0.1);
711+
box-shadow: 0px 3px 6px #00000029;
710712
}
711713
712714
.project-create-header-copy {
@@ -719,9 +721,8 @@ function formatProjectStatus(status: ProjectWizardCreateResult['status']) {
719721
margin: 0;
720722
padding-right: 1.45rem;
721723
color: $text-navy;
722-
font-family: var(--secondary-font-family);
723-
font-size: 1.15rem;
724-
font-weight: 700;
724+
font-size: 22px;
725+
font-weight: 600;
725726
line-height: 1.2;
726727
border-right: 1px solid rgba($text-navy, 0.15);
727728
}
@@ -733,13 +734,12 @@ function formatProjectStatus(status: ProjectWizardCreateResult['status']) {
733734
}
734735
735736
.project-create-workspace-label {
736-
color: rgba($secondary, 0.95);
737-
font-size: 0.95rem;
737+
color: $text-secondary;
738+
font-size: 14px;
738739
}
739740
740741
.project-create-workspace-copy strong {
741-
font-family: var(--secondary-font-family);
742-
font-size: 0.95rem;
742+
font-size: 16px;
743743
font-weight: 600;
744744
}
745745

0 commit comments

Comments
 (0)