Skip to content

Commit bcd73d3

Browse files
Merge pull request #168 from HaudinFlorence/fix_various_small_issues
Fix various small issues
2 parents 7a9f947 + 6ab38ce commit bcd73d3

File tree

10 files changed

+38
-48
lines changed

10 files changed

+38
-48
lines changed

src/components/blog/blogpostsDetails.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
{
1515
"url": "https://blog.jupyter.org/interactive-mapping-with-ipyopenlayers-2b8bc93bb6c4",
1616
"title": "Interactive Mapping with ipyopenlayers",
17-
"image": "/img/blogposts/IPyopenlayers.png",
17+
"image": "/img/blogposts/Interactive-Mapping-with-ipyopenlayers.png",
1818
"summary": " In this article, we present the main features of ipyopenlayers and demonstrate how this library can transform your geospatial data into dynamic, interactive visualizations.",
1919
"date": "September 6, 2024",
2020
"authors": "Nour Cheour",
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
QuantStack is the main organization supporting the development of several C++ scientific computing packages such as
1+
QuantStack is the main organization supporting the development of several C++ scientific computing packages such as:
22

3-
Xsimd, a unified API for SIMD operations, used by projects such as Apache Arrow, Firefox, Krita, Pythran, and naturally, xtensor.
3+
- Xsimd, a unified API for SIMD operations, used by projects such as Apache Arrow, Firefox, Krita, Pythran, and naturally, xtensor.
44

5-
Xtensor, a multi-dimensional array library in C++, supporting NumPy-style API and features, such as universal functions and broadcasting, while being lazy-evaluated. Language bindings for Python, R, and Julia are also available.
5+
- Xtensor, a multi-dimensional array library in C++, supporting NumPy-style API and features, such as universal functions and broadcasting, while being lazy-evaluated. Language bindings for Python, R, and Julia are also available.

src/components/home/ProjectsOverview/styles.module.css

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@
44
}
55
}
66

7-
.project_desktop {
8-
margin-bottom: var(--ifm-spacing-3xl);
9-
}
10-
117
.h2_custom {
128
color: var(--ifm-color-blue-jupyter);
139
}
@@ -16,7 +12,6 @@
1612
padding: var(--ifm-spacing-4xl) var(--ifm-spacing-3xl);
1713
}
1814

19-
2015
.project_yellow {
2116
background-color: var(--ifm-color-primary-p1);
2217
}

src/components/home/WhatWeDo/Topics.tsx

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,10 @@ export function Topics() {
1313
<ul className="row flex-full-centered">
1414
{topicsDetails.map((topics, index) => (
1515
<li className="cards-list" key={index}>
16-
<div className="col flex-full-centered">
17-
<TopicsCard
18-
topics={topics}
19-
TopicsDescriptionMD={TopicsDescriptions[index]}
20-
/>
21-
</div>
16+
<TopicsCard
17+
topics={topics}
18+
TopicsDescriptionMD={TopicsDescriptions[index]}
19+
/>
2220
</li>
2321
))}
2422
</ul>

src/components/home/WhatWeDo/index.tsx

Lines changed: 11 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -5,29 +5,20 @@ import LinkToProjects from "../LinkToProjects";
55

66
export function WhatWeDo() {
77
return (
8-
<div className={"container" + " " + styles.whatwedo_container}>
9-
<div className="row">
10-
<div className="col flex-full-centered">
11-
<div className={styles.services_link_mobile}>
12-
<LinkToServices label={"DISCOVER OUR SERVICES"} />
13-
</div>
8+
<div className={"container" + styles.whatwedo_container}>
9+
<div className="row flex-full-centered">
10+
<div className={styles.services_link_mobile}>
11+
<LinkToServices label={"DISCOVER OUR SERVICES"} />
1412
</div>
1513
</div>
16-
<div className="row">
17-
<div className="col flex-full-centered">
18-
<h1 className={styles.header}> What we do </h1>
19-
</div>
14+
<div className={"row flex-full-centered"}>
15+
<h1 className={styles.header}> What we do </h1>
16+
<Topics />
2017
</div>
21-
<div className="row">
22-
<div className="col flex-full-centered">
23-
<Topics />
24-
</div>
25-
</div>
26-
<div className="row">
27-
<div className="col flex-full-centered">
28-
<div className={styles.projects_link}>
29-
<LinkToProjects label={"DISCOVER ALL OF OUR PROJECTS"} />
30-
</div>
18+
<div className="row flex-full-centered">
19+
<div className={styles.projects_link}>
20+
<LinkToProjects label={"DISCOVER ALL OF OUR PROJECTS"} />
21+
3122
<div className={styles.services_link_desktop}>
3223
<LinkToServices label={"DISCOVER OUR SERVICES"} />
3324
</div>

src/components/home/WhatWeDo/styles.module.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,21 +18,21 @@ div .topics_header {
1818
display: none;
1919
}
2020

21-
2221
.whatwedo_container {
2322
/*background-color: var(--ifm-color-primary-p1);*/
2423
padding: 0;
2524
margin-top: 0;
2625
}
2726

2827
.topics_card {
29-
width: 100%;
30-
padding: var(--ifm-spacing-lg) var(--ifm-spacing-lg);
28+
width: 80%;
3129
text-align: justify;
30+
background-color: var(--ifm-color-primary-p0);
31+
margin: var(--ifm-spacing-lg) auto var(--ifm-spacing-lg) auto ;
3232
}
3333

3434
.topics_card .p {
35-
padding: var(--ifm-spacing-lg) var(--ifm-spacing-lg);
35+
padding: var(--ifm-spacing-xs) var(--ifm-spacing-xs);
3636
}
3737

3838

src/components/home/styles.module.css

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
font-weight: 700;
1616
}
1717

18-
1918
.link_to_about_us {
2019
background-color: var(--ifm-color-primary-p1);
2120
color: var(--ifm-text-color-on-primary-p1);
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
The QuantStack team comprises key maintainers of the Apache Arrow project. The Apache Arrow team at QuantStack provides commercial support and custom development services in the Apache Arrow ecosystem.
22

3-
Check out our recent <a>announcement</a> on the launch of the Apache Arrow team at QuantStack.
3+
Check out our recent [announcement](https://medium.com/@QuantStack/quantstack-steps-up-to-support-apache-arrow-with-new-dedicated-team-9ddc952f20e2) on the launch of the Apache Arrow team at QuantStack.

src/css/custom.css

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292

9393
ul {
9494
padding-left: 0;
95-
margin-left:0;
95+
margin-left: 0;
9696
}
9797

9898
.container {
@@ -183,6 +183,9 @@ ul {
183183
.row-with-margins {
184184
margin: var(--ifm-spacing-xl) 0;
185185
}
186+
.col {
187+
padding: 0;
188+
}
186189

187190
h1 {
188191
color: var(--ifm-text-color-main-title);
@@ -212,7 +215,7 @@ ul {
212215
line-height: 150%;
213216
line-height: 20px;
214217
letter-spacing: 0.25px;
215-
padding: 0 var(--ifm-spacing-lg)
218+
padding: 0 var(--ifm-spacing-lg);
216219
}
217220

218221
li {
@@ -298,7 +301,6 @@ ul {
298301
margin: var(--ifm-spacing-2xl) 0;
299302
}
300303

301-
302304
h1 {
303305
color: var(--ifm-color-primary-p2);
304306
font-family: var(--ifm-font-family-bebas-neue);
@@ -638,13 +640,18 @@ a.menu__link:active {
638640

639641
.cards-list {
640642
list-style-type: none;
641-
padding: none;
642-
margin-left: 0;
643+
padding: 0;
644+
margin: 0;
645+
}
646+
647+
ul.row {
648+
margin: 0;
649+
padding: 0;
643650
}
644651

645652
.projects-list {
646653
list-style-type: none;
647654
padding: none;
648-
margin-left:0;
655+
margin-left: 0;
649656
width: 100%;
650-
}
657+
}

0 commit comments

Comments
 (0)