diff --git a/CHANGELOG.md b/CHANGELOG.md index 034b3c646..f67e70400 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## Unreleased +## Fixed + +- Styling issue preventing scrolling in the sidebar (#1216) +- Styling issue on status bar on mobile (#1217) +- Change tab `block-size` to `min-block-size` to allow for height increase when text wraps (#1219) +- Changed `SkulptRunner.jsx` implementation of hiding elements to use `display: none` rather than `block-size: 0` (#1219) + ## [0.30.1] - 2025-06-09 ### Added @@ -19,8 +26,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ### Fixed - Styling issue on sidebar on mobile (#1194) -- Styling issue preventing scrolling in the sidebar (#1216) -- Styling issue on status bar on mobile (#1217) ## [0.30.0] - 2025-04-15 diff --git a/src/assets/stylesheets/Tabs.scss b/src/assets/stylesheets/Tabs.scss index beb3856e3..636bca3c3 100644 --- a/src/assets/stylesheets/Tabs.scss +++ b/src/assets/stylesheets/Tabs.scss @@ -19,7 +19,7 @@ margin: 0; inset-block-start: 0; inset-block-end: 0; - block-size: $space-3; + min-block-size: var(--min-target-size); box-sizing: border-box; display: flex; align-items: center; diff --git a/src/components/Editor/Runners/PythonRunner/SkulptRunner/SkulptRunner.jsx b/src/components/Editor/Runners/PythonRunner/SkulptRunner/SkulptRunner.jsx index 3fbe45cfe..0e19c63c7 100644 --- a/src/components/Editor/Runners/PythonRunner/SkulptRunner/SkulptRunner.jsx +++ b/src/components/Editor/Runners/PythonRunner/SkulptRunner/SkulptRunner.jsx @@ -485,7 +485,7 @@ const SkulptRunner = ({ active, outputPanels = ["text", "visual"] }) => { {showVisualOutputPanel && (
{ >
- + {t("output.visualOutput")}