Skip to content

Commit

Permalink
fix: height adjusted for widget wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
syam babu committed Mar 13, 2024
1 parent 189705f commit 4682a82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function App(props) {
dynamicCssColorInjector(palette);
return (
<WidgetContextProvider widgetProps={widgetProps}>
<div className="widget-layout" style={{ height: widgetProps.height }}>
<div className="widget-layout" style={{ height: widgetProps.height + 'px' }}>
<Search />
<ResultPanel />
<Footer />
Expand Down

0 comments on commit 4682a82

Please sign in to comment.