@@ -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
3537export 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
4448export 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
5359export 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
6270export 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
6777export 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
7688export 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
8599export 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
91107export const Blank = styled ( Default ) `
92108 background-image: none;
109+ display: flex;
110+ flex: 1 0 auto;
93111` ;
94112
95113export const Illustrated = styled ( Default ) `
114+ display: flex;
115+ flex: 1 0 auto;
116+
96117 > img {
97118 opacity: 0.15;
98119
0 commit comments