Skip to content
Open
Show file tree
Hide file tree
Changes from 4 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
6 changes: 6 additions & 0 deletions semcore/wizard/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

CHANGELOG.md standards are inspired by [keepachangelog.com](https://keepachangelog.com/en/1.0.0/).

## [16.1.7] - 2025-08-12

### Fixed

- Texts are not wrapped.

Check warning on line 9 in semcore/wizard/CHANGELOG.md

View workflow job for this annotation

GitHub Actions / docs-lint

[vale] reported by reviewdog 🐶 [DevDocs.Contractions] It's okay to use the contracted form 'aren't' instead of 'are not'. Raw Output: {"message": "[DevDocs.Contractions] It's okay to use the contracted form 'aren't' instead of 'are not'.", "location": {"path": "semcore/wizard/CHANGELOG.md", "range": {"start": {"line": 9, "column": 9}}}, "severity": "INFO"}

## [16.1.6] - 2025-08-07

### Changed
Expand Down
10 changes: 10 additions & 0 deletions semcore/wizard/src/style/wizard.shadow.css
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ SSidebar {
SSidebarHeader {
font-size: var(--intergalactic-fs-300, 16px);
margin: 0 var(--intergalactic-spacing-5x, 20px) var(--intergalactic-spacing-4x, 16px);
overflow: hidden;
overflow-wrap: break-word;
@media (max-width: 1060px) {
display: none;
}
Expand Down Expand Up @@ -90,6 +92,8 @@ SCompleted {
}

SStepDescription {
overflow: hidden;
overflow-wrap: break-word;
@media (max-width: 1060px) {
display: none;
}
Expand All @@ -101,6 +105,12 @@ SContent {
border-radius: 0 var(--intergalactic-modal-rounded, 12px) var(--intergalactic-modal-rounded, 12px)
0;
background: var(--intergalactic-bg-primary-neutral, #ffffff);
overflow: hidden;
}

SStep {
overflow: hidden;
overflow-wrap: break-word;
}

SSidebarMenu {
Expand Down
Loading