File tree Expand file tree Collapse file tree
components/containers/Row Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -171,10 +171,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
171171 - BlogPostsContainer
172172 - RevealContentContainer
173173 - Member
174+ - Row
174175 - Container
175176 - Wrapper
176- - Updated ContactUsForm's checkbox wrapper from div to label to enhance its accessibility
177- - Updated SearchInput width to 100% for better styling
178- - Reverted the prop name to styles in Container component as the change of the name introduced a styling bug
179- - Extracted : root from themes.scss to globals.scss
180- - Created a combineClasses function to clean up conditional class handling
177+ - Updated ContactUsForm's checkbox wrapper from div to label to enhance its accessibility
178+ - Updated SearchInput width to 100% for better styling
179+ - Reverted the prop name to styles in Container component as the change of the name introduced a styling bug
180+ - Rename RowAlignLeft to Row
181+ - Extracted : root from themes.scss to globals.scss
182+ - Created a combineClasses function to clean up conditional class handling
183+
Original file line number Diff line number Diff line change 1+ .row {
2+ display : flex ;
3+ flex-wrap : wrap ;
4+ justify-content : left ;
5+ }
Original file line number Diff line number Diff line change 1- import S from './styles ' ;
1+ import styles from './Row.module.scss ' ;
22
3- export function Row ( { customClass, children } ) {
4- return < S . Row > { children } </ S . Row > ;
5- }
6-
7- export function RowAlignLeft ( { customClass, children } ) {
8- return < S . RowAlignLeft > { children } </ S . RowAlignLeft > ;
3+ export function Row ( { children } ) {
4+ return < div className = { styles . row } > { children } </ div > ;
95}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import { OurGoalsCardsColumns } from '@/components/containers/CardColumns/OurGoa
44import Title from '@/components/snippets/Title' ;
55import Wrapper from '@/components/containers/Wrapper' ;
66import Container from '@/components/containers/Container' ;
7- import { RowAlignLeft } from '@/components/containers/Row' ;
7+ import { Row } from '@/components/containers/Row' ;
88import Member from '@/components/containers/Member' ;
99import { whoWeAre } from '@/utils/about' ;
1010import { useTheme } from 'styled-components' ;
@@ -230,7 +230,7 @@ export default function AboutUs() {
230230 < Wrapper customClass = 'primary__accent' >
231231 < Container >
232232 < Title title = 'Who we are' />
233- < RowAlignLeft >
233+ < Row >
234234 { whoWeAre . map ( _ => {
235235 return (
236236 < Member
@@ -245,7 +245,7 @@ export default function AboutUs() {
245245 />
246246 ) ;
247247 } ) }
248- </ RowAlignLeft >
248+ </ Row >
249249 </ Container >
250250 </ Wrapper >
251251 </ RevealContentContainer >
You can’t perform that action at this time.
0 commit comments