Skip to content

Commit 6fa9d59

Browse files
Update width of the carousel with logos.
1 parent 4b24904 commit 6fa9d59

File tree

5 files changed

+300
-3
lines changed

5 files changed

+300
-3
lines changed

src/components/home/Hero/LogosTableBy8.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export default function SimpleSlider() {
6666
export function LogosTable1() {
6767
return (
6868
<div className={"container" + " " + styles.table_with_8_customers}>
69-
<div className="row row--no-gutters">
69+
<div className="row-max-width row--no-gutters">
7070
<div className={"col col--3 flex-full-centered"}>
7171
<img
7272
src={BloombergLogoUrl}

src/components/home/Hero/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@ export function Hero() {
4545
<div className="main-container-with-margins">
4646
<div className={"container" + " " + styles.logos_carousel}>
4747
<div className="row">
48-
<div className="col col--10 col--offset-1">
48+
<div className="col col--8 col--offset-2">
4949
<div className={styles.worked_with}> We have worked with </div>
5050
</div>
5151
</div>
5252
<div className="row">
53-
<div className="col col--10 col--offset-1">
53+
<div className="col col--8 col--offset-2">
5454
<SimpleSlider />
5555
</div>
5656
</div>

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@
1111
padding-bottom: var(--ifm-spacing-3xl);
1212
}
1313

14+
.row_max_width {
15+
max-width: 1500px;
16+
display: flex;
17+
}
18+
1419
.banner_container_small {
1520
position: relative;
1621
width: 100%;

src/css/custom.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,12 @@ ul {
108108
padding: 0;
109109
}
110110

111+
.row-max-width {
112+
max-width: 1500px;
113+
display: flex;
114+
}
115+
116+
111117
/***footer*****/
112118
.footer__item {
113119
color: var(--ifm-text-color-footer);
Lines changed: 286 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)