Skip to content

Commit

Permalink
Merge pull request #31 from BlizzBolts/0.10.2
Browse files Browse the repository at this point in the history
0.10.2
  • Loading branch information
null51_ authored Aug 2, 2022
2 parents 0945b63 + 9faef28 commit 4dcff49
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `Fixed` for any bug fixes.
- `Security` in case of vulnerabilities.

## [0.10.2] - 2022-08-02

### Changed

- min-height 400px set for Pc Liveblock and overflow: auto

## [0.10.1] - 2022-07-07

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@blizzbolts/docit",
"version": "0.10.1",
"version": "0.10.2",
"license": "MIT",
"bin": {
"docit": "bin/docit.js"
Expand Down
2 changes: 1 addition & 1 deletion src/client/built-in/ShowCode/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const ShowCode: React.FC<ShowCodeProps> = (props) => {
<StyledRenderWindow>
<iframe
src={`#/__sandbox__?moduleId=${moduleId}`}
style={{ border: 0, width: "100%", height: "100%" }}
style={{ border: 0, width: "100%", height: "100%", minHeight: '400px' }}
></iframe>
</StyledRenderWindow>
<StyledButtonContainer>
Expand Down
2 changes: 1 addition & 1 deletion src/client/components/SandBox/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const Sandbox: React.FC = () => {

return (
<StyledSandBox>
<div style={{ height: "100vh" }}>
<div style={{ height: "100vh", overflow: 'auto' }}>
<ComponentRef.current />
</div>
<IFrameTools moduleId={query.moduleId} />
Expand Down

0 comments on commit 4dcff49

Please sign in to comment.