Closed ggcr closed 1 year ago
Hi @stevenpetryk
Noticed that the Collapsable code from the Docs is overflowing in Safari. Check the attached images below.
The problem is that overflow: clip; is not supported for Safari 15.6.
overflow: clip;
macOS Monterey 12.5
Version 15.6 (17613.3.9.1.5)
Version 108.0.5359.124
Setting overflow: auto by default works because the max-height property will crop the text either way.
overflow: auto
max-height
Tested it on Safari 16.2 and it works too
Hi @stevenpetryk
Noticed that the Collapsable code from the Docs is overflowing in Safari. Check the attached images below.
Issue
The problem is that
overflow: clip;
is not supported for Safari 15.6.MacOS
macOS Monterey 12.5
Safari Version
Version 15.6 (17613.3.9.1.5)
Google Chrome Version
Version 108.0.5359.124
Proposed solution
Setting
overflow: auto
by default works because themax-height
property will crop the text either way.Tested it on Safari 16.2 and it works too