We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1dea2aa + e8b0cbe commit b345ad0Copy full SHA for b345ad0
services/app/source/03-components/Wysiwyg/Wysiwyg.tsx
@@ -7,7 +7,11 @@ interface WysiwygProps extends GessoComponent {
7
}
8
9
function Wysiwyg({ children, modifierClasses }: WysiwygProps): JSX.Element {
10
- return <div className={clsx(modifierClasses)}>{children}</div>;
+ return (
11
+ <div className={clsx('c-wysiwyg u-clearfix', modifierClasses)}>
12
+ {children}
13
+ </div>
14
+ );
15
16
17
export default Wysiwyg;
services/app/source/06-utility/clearfix.css
@@ -0,0 +1,6 @@
1
+@import 'mixins';
2
+
3
+.clearfix,
4
+.u-clearfix {
5
+ @include clearfix();
6
+}
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';
0 commit comments