File tree Expand file tree Collapse file tree 4 files changed +2
-14
lines changed Expand file tree Collapse file tree 4 files changed +2
-14
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ export default function CardsColumns({
12
12
} ) {
13
13
return (
14
14
< Container >
15
- < div className = { ` ${ styles . inner__content } ` } >
15
+ < div className = { styles . inner__content } >
16
16
{ titles . map ( ( title , index ) => {
17
17
return (
18
18
< Card
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ export default function TwoColumn({
26
26
} ;
27
27
28
28
return (
29
- < section className = { ` ${ styles . wrapper } ` } style = { styleProps . wrapper } >
29
+ < section className = { styles . wrapper } style = { styleProps . wrapper } >
30
30
< Container
31
31
className = { `${ styles . inner } ${ styles [ customInnerClass ] } ` }
32
32
styles = { { flexDirection : rowOrder } }
Original file line number Diff line number Diff line change 1
1
@use ' ./variables' as * ;
2
2
@use ' ./mixins' as * ;
3
3
4
- .section__hidden {
5
- opacity : 0 ;
6
- transform : translateY (8rem );
7
- }
8
-
9
4
.inner__content {
10
5
margin : 0 auto ;
11
6
padding-bottom : 12rem ;
12
7
justify-content : center ;
13
- transition : transform 1s , opacity 1s ;
14
8
15
9
@include desktop-breakpoint-plus {
16
10
display : flex ;
Original file line number Diff line number Diff line change 1
1
@use ' ./variables' as * ;
2
2
@use ' ./mixins' as * ;
3
3
4
- .section__hidden {
5
- opacity : 0 ;
6
- transform : translateY (8rem );
7
- }
8
-
9
4
.wrapper {
10
5
background-color : $light-bg-color ;
11
- transition : transform 1s , opacity 1s ;
12
6
13
7
.inner {
14
8
padding : 5rem 0 ;
You can’t perform that action at this time.
0 commit comments