File tree Expand file tree Collapse file tree 5 files changed +14
-3
lines changed
Expand file tree Collapse file tree 5 files changed +14
-3
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " nextjs-project" ,
3- "version" : " 1.0.4 " ,
3+ "version" : " 1.0.5 " ,
44 "private" : true ,
55 "scripts" : {
66 "prepare" : " husky install"
Original file line number Diff line number Diff line change 11{
22 "name" : " nextjs-project" ,
3- "version" : " 1.0.4 " ,
3+ "version" : " 1.0.5 " ,
44 "private" : true ,
55 "scripts" : {
66 "dev" : " next dev" ,
Original file line number Diff line number Diff line change @@ -7,7 +7,11 @@ interface WysiwygProps extends GessoComponent {
77}
88
99function Wysiwyg ( { children, modifierClasses } : WysiwygProps ) : JSX . Element {
10- return < div className = { clsx ( modifierClasses ) } > { children } </ div > ;
10+ return (
11+ < div className = { clsx ( 'c-wysiwyg u-clearfix' , modifierClasses ) } >
12+ { children }
13+ </ div >
14+ ) ;
1115}
1216
1317export default Wysiwyg ;
Original file line number Diff line number Diff line change 1+ @import 'mixins' ;
2+
3+ .clearfix ,
4+ .u-clearfix {
5+ @include clearfix ();
6+ }
Original file line number Diff line number Diff line change 11@layer utility {
22 @import 'accessibility.css' ;
33 @import 'alignment.css' ;
4+ @import 'clearfix.css' ;
45 @import 'spacing.css' ;
56}
You can’t perform that action at this time.
0 commit comments