Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit fae436c

Browse files
committed
fix(create-new-team): center the customer logos
* Center the image. * Decrease margins and paddings not to trigger scrollbar unnecessarily. Addresses #402 (comment)
1 parent ee59470 commit fae436c

File tree

5 files changed

+5
-6
lines changed

5 files changed

+5
-6
lines changed

src/components/CustomerScroll/styles.module.scss

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,19 @@
77
color: #7f7f7f;
88
text-align: center;
99
text-transform: uppercase;
10-
margin-bottom: 30px;
1110
}
1211

1312
.customer-logos {
1413
background-image: url("../../assets/images/customer-logos.svg");
1514
background-size: contain;
1615
background-repeat: no-repeat;
16+
background-position: center;
1717
height: 56px;
1818
width: 100%;
1919
}
2020

2121
@media only screen and (max-height: 859px) {
2222
.title {
2323
font-size: 16px;
24-
margin-bottom: 15px;
2524
}
2625
}

src/routes/CreateNewTeam/components/InputContainer/styles.module.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
flex-direction: row;
44
justify-content: center;
55
align-items: flex-start;
6-
margin: 42px 35px;
6+
margin: 42px 35px 30px;
77
.right-side {
88
display: flex;
99
flex-direction: column;

src/routes/CreateNewTeam/components/SearchContainer/styles.module.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
flex-direction: row;
44
justify-content: center;
55
align-items: flex-start;
6-
margin: 42px 35px;
6+
margin: 42px 35px 30px;
77
.right-side {
88
display: flex;
99
flex-direction: column;

src/routes/CreateNewTeam/components/SubmitContainer/styles.module.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
flex-direction: row;
44
justify-content: center;
55
align-items: flex-start;
6-
margin: 42px 35px;
6+
margin: 42px 35px 30px;
77
.right-side {
88
display: flex;
99
flex-direction: column;
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
.logos {
2-
padding: 0 35px 15px;
2+
padding: 0 35px 8px;
33
width: 100%;
44
}

0 commit comments

Comments
 (0)