Skip to content
This repository was archived by the owner on Oct 11, 2022. It is now read-only.

Commit 571e694

Browse files
authored
Merge pull request #4208 from withspectrum/2.4.64
2.4.64
2 parents e14ecfd + 4382158 commit 571e694

File tree

3 files changed

+23
-1
lines changed

3 files changed

+23
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Spectrum",
3-
"version": "2.4.63",
3+
"version": "2.4.64",
44
"license": "BSD-3-Clause",
55
"devDependencies": {
66
"@babel/preset-flow": "^7.0.0",

src/components/themedSection/index.js

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ export const Primary = styled(Default)`
3030
${hexa(theme.brand.alt, 0.75)}, ${theme.space.dark}
3131
)`};
3232
color: ${theme.text.reverse};
33+
display: flex;
34+
flex: 1 0 auto;
3335
`;
3436

3537
export const Brand = styled(Default)`
@@ -39,6 +41,8 @@ export const Brand = styled(Default)`
3941
${({ theme }) => `${theme.brand.alt}, ${theme.brand.default}`}
4042
);
4143
color: ${theme.text.reverse};
44+
display: flex;
45+
flex: 1 0 auto;
4246
`;
4347

4448
export const Dark = styled(Default)`
@@ -48,6 +52,8 @@ export const Dark = styled(Default)`
4852
${({ theme }) => `${theme.space.dark}, ${theme.brand.default}`}
4953
);
5054
color: ${theme.text.reverse};
55+
display: flex;
56+
flex: 1 0 auto;
5157
`;
5258

5359
export const Space = styled(Default)`
@@ -57,11 +63,15 @@ export const Space = styled(Default)`
5763
${({ theme }) => `${theme.space.alt}, ${theme.space.dark}`}
5864
);
5965
color: ${theme.text.reverse};
66+
display: flex;
67+
flex: 1 0 auto;
6068
`;
6169

6270
export const Light = styled(Default)`
6371
background-color: ${theme.space.alt};
6472
color: ${theme.text.reverse};
73+
display: flex;
74+
flex: 1 0 auto;
6575
`;
6676

6777
export const Bright = styled(Default)`
@@ -71,6 +81,8 @@ export const Bright = styled(Default)`
7181
${({ theme }) => `${theme.space.alt}, ${theme.brand.default}`}
7282
);
7383
color: ${theme.text.reverse};
84+
display: flex;
85+
flex: 1 0 auto;
7486
`;
7587

7688
export const Grayscale = styled(Default)`
@@ -80,19 +92,28 @@ export const Grayscale = styled(Default)`
8092
${({ theme }) => `${theme.text.alt}, ${theme.bg.reverse}`}
8193
);
8294
color: ${theme.text.reverse};
95+
display: flex;
96+
flex: 1 0 auto;
8397
`;
8498

8599
export const Reverse = styled(Default)`
86100
background-color: ${theme.bg.reverse};
87101
background-image: none;
88102
color: ${theme.text.reverse};
103+
display: flex;
104+
flex: 1 0 auto;
89105
`;
90106

91107
export const Blank = styled(Default)`
92108
background-image: none;
109+
display: flex;
110+
flex: 1 0 auto;
93111
`;
94112

95113
export const Illustrated = styled(Default)`
114+
display: flex;
115+
flex: 1 0 auto;
116+
96117
> img {
97118
opacity: 0.15;
98119

src/views/explore/components/communitySearchWrapper.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ const CommunitySearchWrapper = props => {
2020
margin-top: 40px;
2121
margin-bottom: 0;
2222
padding: 16px;
23+
padding-bottom: 48px;
2324
2425
@media (max-width: 640px) {
2526
margin-top: 80px;

0 commit comments

Comments
 (0)