Skip to content

Commit e559b3c

Browse files
authored
Merge pull request #53 from forumone/1.x-RC
1.0.5
2 parents 7dcd0de + 299d166 commit e559b3c

File tree

5 files changed

+14
-3
lines changed

5 files changed

+14
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nextjs-project",
3-
"version": "1.0.4",
3+
"version": "1.0.5",
44
"private": true,
55
"scripts": {
66
"prepare": "husky install"

services/app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nextjs-project",
3-
"version": "1.0.4",
3+
"version": "1.0.5",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",

services/app/source/03-components/Wysiwyg/Wysiwyg.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,11 @@ interface WysiwygProps extends GessoComponent {
77
}
88

99
function 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

1317
export default Wysiwyg;
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
@import 'mixins';
2+
3+
.clearfix,
4+
.u-clearfix {
5+
@include clearfix();
6+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
@layer utility {
22
@import 'accessibility.css';
33
@import 'alignment.css';
4+
@import 'clearfix.css';
45
@import 'spacing.css';
56
}

0 commit comments

Comments
 (0)