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
1 change: 1 addition & 0 deletions semcore/wizard/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ CHANGELOG.md standards are inspired by [keepachangelog.com](https://keepachangel

### Fixed

- Unnecessary scroll in small mode with long text in sidebar step.
- Disabled `Wizard.Stepper` in `Sidebar` can be focused and activated by keyboard.

## [16.2.0] - 2025-10-29
Expand Down
4 changes: 2 additions & 2 deletions semcore/wizard/src/style/wizard.shadow.css
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,12 @@ SSidebar {
@media (max-width: 1060px) {
padding: var(--intergalactic-spacing-2x, 8px);
&:hover {
width: fit-content;
width: max-content;
max-width: 220px;
}
&:hover SStepDescription {
display: block;
border-radius: var(--intergalactic-control-rounded, 6px);
white-space: nowrap;
overflow: auto;
}
&[active]:hover SStepDescription {
Expand Down Expand Up @@ -90,6 +89,7 @@ SCompleted {
}

SStepDescription {
overflow-wrap: anywhere;
@media (max-width: 1060px) {
display: none;
}
Expand Down
Loading