Skip to content

Commit

Permalink
chore: add Lorem Ipsum for testing purposes
Browse files Browse the repository at this point in the history
  • Loading branch information
chybisov committed Apr 14, 2022
1 parent dfaccfd commit 2462ca8
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/widget-embedded/src/index.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
html,
body,
#root {
height: 100%;
/* height: 100%; */
}

body {
Expand Down
24 changes: 23 additions & 1 deletion packages/widget-embedded/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,29 @@ const config: WidgetConfig = {

root.render(
<React.StrictMode>
<LiFiWidget config={config} />
<div
style={{
display: 'flex',
flexDirection: 'row',
}}
>
<div
style={{
padding: 16,
}}
>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim
veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
commodo consequat. Duis aute irure dolor in reprehenderit in voluptate
velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint
occaecat cupidatat non proident, sunt in culpa qui officia deserunt
mollit anim id est laborum.
</div>
<div>
<LiFiWidget config={config} />
</div>
</div>
</React.StrictMode>,
);

Expand Down

0 comments on commit 2462ca8

Please sign in to comment.