Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- 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)
- Enabled `hyphens: auto` globally (with exceptions) to prevent overflow with longer words (#1215)
- Removed fixed size from `ProjectBar` to prevent overflow when text wraps (#1221)

## Changed

- Improved status bar styling (#1221)

## [0.30.1] - 2025-06-09

Expand Down
2 changes: 1 addition & 1 deletion src/assets/stylesheets/ProjectBar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
display: flex;
align-items: center;
z-index: 1;
block-size: $space-4;
container-type: inline-size;
background-color: var(--editor-color-layer-3);
border: 1px solid var(--editor-color-outline);
Expand Down Expand Up @@ -39,6 +38,7 @@
}

.project-bar__btn-wrapper {
display: flex;
block-size: 100%;
}

Expand Down
5 changes: 3 additions & 2 deletions src/assets/stylesheets/SaveStatus.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,16 @@
.save-status {
align-items: center;
display: flex;
gap: $space-0-25;
gap: var(--space-1);
justify-content: flex-end;
margin-block: 0;
padding-inline: var(--space-1);
padding-inline: var(--space-2);
}

.save-status--mobile {
margin: unset;
padding-inline: 0;
gap: var(--space-0-5);

.save-status__text {
@include font-size-0-75(regular);
Expand Down
Loading