Skip to content

Commit a67abfc

Browse files
committed
fix syntax error preventing to fix Two Column styles
removed excess scss files
1 parent 64f25c9 commit a67abfc

20 files changed

+5
-1430
lines changed

components/containers/Container/Container.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import containerStyles from '@/styles/Container.module.scss';
21
import S from './styles';
32

43
export default function Container({

components/containers/TwoColumn/TwoColumn.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,13 @@ export default function TwoColumn({
1919
openNewTab,
2020
$contentType,
2121
}) {
22-
//Set Styles base don content type
23-
const S = TwoColumnStyles.$contentType
24-
? TwoColumnStyles.$contentType
22+
//Set Styles based on content type
23+
const S = TwoColumnStyles[$contentType]
24+
? TwoColumnStyles[$contentType]
2525
: TwoColumnStyles.base;
2626

27+
console.log();
28+
2729
// Add rowOrder="row-reverse" prop to the component to reverse its order on desktop
2830
return (
2931
<S.TwoColumnWrapper $color={color} $bgColor={bgColor}>

styles/Blog.module.scss

Lines changed: 0 additions & 79 deletions
This file was deleted.

styles/ButtonLink.module.scss

Lines changed: 0 additions & 38 deletions
This file was deleted.

styles/Card.module.scss

Lines changed: 0 additions & 144 deletions
This file was deleted.

styles/CardsColumns.module.scss

Lines changed: 0 additions & 22 deletions
This file was deleted.

0 commit comments

Comments
 (0)