We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47a491e commit c4f5fdfCopy full SHA for c4f5fdf
src/operator/OrgOverlay.scss
@@ -1,5 +1,10 @@
1
-.overlay-header--color {
+.overlay-header--color.overlay-header--title {
2
color: #fff;
3
+ user-select: text !important;
4
+ -moz-user-select: text !important;
5
+ -webkit-user-select: text !important;
6
+ -ms-user-select: text !important;
7
+ -o-user-select: text !important;
8
}
9
10
.cf-overlay--body {
src/operator/OrgOverlay.tsx
@@ -79,7 +79,7 @@ const OrgOverlay: FC = () => {
79
<Overlay.Container maxWidth={1000}>
80
<Overlay.Header
81
title={orgID}
82
- className="overlay-header--color"
+ className="overlay-header--color overlay-header--title"
83
onDismiss={() => history.goBack()}
84
/>
85
<SpinnerContainer
0 commit comments