We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae5a7ac commit 0370244Copy full SHA for 0370244
.changeset/chilled-dragons-sin.md
@@ -0,0 +1,5 @@
1
+---
2
+"@primer/css": patch
3
4
+
5
+Bugfix: Adding `white-space: normal` to Overlay compontn to reset wrapping.
src/overlay/overlay.scss
@@ -18,6 +18,7 @@ $primer-borderRadius-large: 0.75rem;
18
width: min(var(--overlay-width), 100vw - 2rem);
19
min-width: 192px;
20
max-height: min(calc(100vh - 2rem), var(--overlay-height));
21
+ white-space: normal;
22
flex-direction: column;
23
background-color: var(--color-canvas-overlay);
24
border-radius: $primer-borderRadius-large;
0 commit comments