-
Notifications
You must be signed in to change notification settings - Fork 357
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(stepper): horizontal scroll was not appearing when needed in cert…
…ain cases. (closes #282) (#640) * fix(stepper): horizontal scroll was not appearing when needed in certain cases * fix(stepper): missing auto overflow for content * fix(): missing autocomplete module in components * fix(stepper): add cdkScrollable to have a hook for repositioning autocomplete, etc
- Loading branch information
1 parent
8e9ab29
commit 9542139
Showing
4 changed files
with
11 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
.td-step-body { | ||
overflow-x: hidden; | ||
.td-step-content { | ||
overflow-x: auto; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters