File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed
pages/ManagementSettingsPage Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,6 @@ const styles = {
34
34
35
35
cursor : "default" ,
36
36
flexShrink : 0 ,
37
- alignSelf : "baseline" ,
38
37
padding : "4px 8px" ,
39
38
lineHeight : 1 ,
40
39
whiteSpace : "nowrap" ,
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ export const SettingsHeader: FC<HeaderProps> = ({
31
31
fontSize : 32 ,
32
32
fontWeight : 700 ,
33
33
display : "flex" ,
34
- alignItems : "center " ,
34
+ alignItems : "baseline " ,
35
35
lineHeight : "initial" ,
36
36
margin : 0 ,
37
37
marginBottom : 4 ,
@@ -47,6 +47,7 @@ export const SettingsHeader: FC<HeaderProps> = ({
47
47
</ h1 >
48
48
{ tooltip }
49
49
</ Stack >
50
+
50
51
{ description && (
51
52
< span
52
53
css = { {
Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ import {
26
26
} from "utils/formUtils" ;
27
27
import * as Yup from "yup" ;
28
28
import { HorizontalContainer , HorizontalSection } from "./Horizontal" ;
29
+ import { FeatureBadge } from "components/FeatureBadge/FeatureBadge" ;
29
30
30
31
const MAX_DESCRIPTION_CHAR_LIMIT = 128 ;
31
32
const MAX_DESCRIPTION_MESSAGE = `Please enter a description that is no longer than ${ MAX_DESCRIPTION_CHAR_LIMIT } characters.` ;
@@ -66,7 +67,10 @@ export const OrganizationSettingsPageView: FC<
66
67
67
68
return (
68
69
< div >
69
- < SettingsHeader title = "Settings" />
70
+ < SettingsHeader
71
+ title = "Settings"
72
+ tooltip = { < FeatureBadge type = "beta" variant = "interactive" size = "lg" /> }
73
+ />
70
74
71
75
{ Boolean ( error ) && ! isApiValidationError ( error ) && (
72
76
< div css = { { marginBottom : 32 } } >
You can’t perform that action at this time.
0 commit comments