diff --git a/package.json b/package.json index 6c7390b5..67d656ed 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nextjs-project", - "version": "1.0.4", + "version": "1.0.5", "private": true, "scripts": { "prepare": "husky install" diff --git a/services/app/package.json b/services/app/package.json index 14f67a3b..c1a751f9 100644 --- a/services/app/package.json +++ b/services/app/package.json @@ -1,6 +1,6 @@ { "name": "nextjs-project", - "version": "1.0.4", + "version": "1.0.5", "private": true, "scripts": { "dev": "next dev", diff --git a/services/app/source/03-components/Wysiwyg/Wysiwyg.tsx b/services/app/source/03-components/Wysiwyg/Wysiwyg.tsx index bf190402..f904110e 100644 --- a/services/app/source/03-components/Wysiwyg/Wysiwyg.tsx +++ b/services/app/source/03-components/Wysiwyg/Wysiwyg.tsx @@ -7,7 +7,11 @@ interface WysiwygProps extends GessoComponent { } function Wysiwyg({ children, modifierClasses }: WysiwygProps): JSX.Element { - return
{children}
; + return ( +
+ {children} +
+ ); } export default Wysiwyg; diff --git a/services/app/source/06-utility/clearfix.css b/services/app/source/06-utility/clearfix.css new file mode 100644 index 00000000..a0a11019 --- /dev/null +++ b/services/app/source/06-utility/clearfix.css @@ -0,0 +1,6 @@ +@import 'mixins'; + +.clearfix, +.u-clearfix { + @include clearfix(); +} diff --git a/services/app/source/06-utility/index.css b/services/app/source/06-utility/index.css index 8b79542a..0442f1c8 100644 --- a/services/app/source/06-utility/index.css +++ b/services/app/source/06-utility/index.css @@ -1,5 +1,6 @@ @layer utility { @import 'accessibility.css'; @import 'alignment.css'; + @import 'clearfix.css'; @import 'spacing.css'; }