Skip to content

Commit f9c488a

Browse files
Take comments into account and fix various issues.
1 parent b54cef5 commit f9c488a

File tree

6 files changed

+23
-18
lines changed

6 files changed

+23
-18
lines changed

src/components/fundable/MenuSideBar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import styles from "./styles.module.css";
44

55
const sections = [
66
{ id: 'jupyter-ecosystem', label: 'Jupyter Ecosystem' },
7-
{ id: 'project-management', label: 'Project Management' },
7+
{ id: 'package-management', label: 'Package Management' },
88
];
99

1010
export default function MenuSideBar() {

src/components/fundable/SmallProjectCard.tsx

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,6 @@ export function SmallProjectCard({ project }) {
4747
</div>
4848
</div>
4949
</div>
50-
<div>
51-
<LinkToMoreInformation label={"Read more"} pageName={project.pageName} />
52-
</div>
5350
<div className={styles.project_information_container}>
5451
<div className="flex-full-centered">
5552
<BlueCaretIcon />
@@ -79,8 +76,8 @@ export function SmallProjectCard({ project }) {
7976
Indicative price
8077
</div>
8178
<div>
82-
<div className={styles.small_project_card_financed_at_text}>
83-
Financed at {project.currentFundingPercentage} %
79+
<div className={styles.small_project_card_funded_at_text}>
80+
Funded at {project.currentFundingPercentage} %
8481
</div>
8582
<div>
8683
<ProgressBar value={project.currentFundingPercentage} color={'var(--ifm-color-secondary-s1'} />
@@ -97,7 +94,7 @@ export function SmallProjectCard({ project }) {
9794
<div><DollarIcon width="35px" height="26px" /></div>
9895
<div className={styles.shareable_text}>
9996
{project.currentNbOfFunders === 0
100-
? 'The project is not supported yet'
97+
? 'This project does not have any backers yet'
10198
: `Supported by ${project.currentNbOfFunders}
10299
${project.currentNbOfFunders === 1 ? 'funder' : 'funders'}
103100
`}

src/components/fundable/styles.module.css

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,9 @@
8888
}
8989

9090
.large_project_card_description_container {
91-
background-color: #F1F1F1
91+
background-color: #F1F1F1;
92+
text-align: justify;
93+
padding: var(--ifm-spacing-md);
9294
}
9395

9496
.large_project_card_description p {
@@ -242,7 +244,7 @@
242244
text-transform: uppercase;
243245
}
244246

245-
.small_project_card_financed_at_text {
247+
.small_project_card_funded_at_text {
246248
font-family: var(--ifm-font-family-roboto);
247249
font-size: var(--ifm-font-size-small);
248250
font-style: normal;
@@ -335,9 +337,10 @@
335337
.large_project_card {
336338
width: 90vw;
337339
padding: var(--ifm-spacing-xl);
338-
overflow-y: auto;
339340
border-radius: 8px;
340341
padding: var(--ifm-spacing-xl) var(--ifm-spacing-xl);
342+
overflow-y: auto;
343+
max-height: 95vh;
341344
}
342345

343346
.small_input {
@@ -356,6 +359,7 @@
356359
width: 90vw;
357360
padding: 40px;
358361
overflow-y: auto;
362+
max-height: 95vh;
359363
}
360364

361365
.get_a_quote_text_col_desktop {
@@ -396,16 +400,17 @@
396400
.large_project_card {
397401
width: 80vw;
398402
padding: 40px;
399-
overflow-y: auto;
400403
border-radius: 8px;
401404
padding: var(--ifm-spacing-xl) var(--ifm-spacing-xl);
405+
overflow-y: auto;
406+
max-height: 95vh;
402407
}
403408

404409
.main_area_desktop {
405410
display: none
406411
}
407412

408-
.small_input {
413+
.small_input {
409414
width: 400px;
410415
height: 56px;
411416
border-radius: 4px;
@@ -421,10 +426,11 @@
421426
display: none
422427
}
423428

424-
.get_a_quote_dialog {
429+
.get_a_quote_dialog {
425430
width: 80vw;
426431
padding: 40px;
427432
overflow-y: auto;
433+
max-height: 95vh;
428434
}
429435

430436
.get_a_quote_text_col_desktop {
@@ -455,10 +461,11 @@
455461
}
456462

457463
.large_project_card {
458-
width: 1000px;
464+
width: 800px;
459465
padding: 40px;
460-
overflow-y: auto;
461466
border-radius: 8px;
467+
overflow-y: auto;
468+
max-height: 95vh;
462469
}
463470

464471
.main_area_mobile {
@@ -487,6 +494,7 @@
487494
width: 90vw;
488495
padding: 40px;
489496
overflow-y: auto;
497+
max-height: 95vh;
490498
}
491499

492500
.get_a_quote_form_col_mobile {

static/img/avatars/QuantStack.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

static/rss.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

static/rss_all.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)