File tree Expand file tree Collapse file tree 3 files changed +13
-8
lines changed Expand file tree Collapse file tree 3 files changed +13
-8
lines changed Original file line number Diff line number Diff line change 1
- import contactCardStyles from '@/styles/ContactUsCards.module.scss' ;
2
1
import CardsColumns from './containers/CardColumns/CardsColumns' ;
3
2
import RevealContentContainer from './containers/RevealContentContainer/RevealContentContainer' ;
3
+ import styled from 'styled-components' ;
4
+ import { $white } from '@/styles/_variables' ;
4
5
5
6
const cards = [
6
7
{
@@ -29,12 +30,16 @@ const cards = [
29
30
} ,
30
31
] ;
31
32
33
+ const ContactCardsContainer = styled . div `
34
+ background-color: ${ $white } ;
35
+ ` ;
36
+
32
37
export default function ContactUsCards ( ) {
33
38
return (
34
- < div className = { contactCardStyles . contactCards } >
39
+ < ContactCardsContainer >
35
40
< RevealContentContainer >
36
41
< CardsColumns cards = { cards } customClass = 'contact-cards' />
37
42
</ RevealContentContainer >
38
- </ div >
43
+ </ ContactCardsContainer >
39
44
) ;
40
45
}
Original file line number Diff line number Diff line change 1
- @use ' ./mixins' as * ;
2
- @use ' ./variables' as * ;
1
+ // @use './mixins' as *;
2
+ // @use './variables' as *;
3
3
4
- .contactCards {
5
- background-color : $white ;
6
- }
4
+ // .contactCards {
5
+ // background-color: $white;
6
+ // }
You can’t perform that action at this time.
0 commit comments