File tree Expand file tree Collapse file tree 16 files changed +48
-37
lines changed Expand file tree Collapse file tree 16 files changed +48
-37
lines changed Original file line number Diff line number Diff line change @@ -112,12 +112,9 @@ export const NotificationsContent = props => {
112
112
return (
113
113
< Element
114
114
css = { css ( {
115
- backgroundColor : 'sideBar .background' ,
115
+ backgroundColor : 'menuList .background' ,
116
116
fontFamily : 'Inter' ,
117
117
width : 321 ,
118
- borderWidth : 1 ,
119
- borderStyle : 'solid' ,
120
- borderColor : 'sideBar.border' ,
121
118
} ) }
122
119
{ ...props }
123
120
>
@@ -126,13 +123,11 @@ export const NotificationsContent = props => {
126
123
css = { css ( {
127
124
display : 'grid' ,
128
125
gridTemplateColumns : '1fr 60px' ,
129
- borderWidth : 0 ,
130
- borderBottomWidth : 1 ,
131
- borderStyle : 'solid' ,
132
- borderColor : 'sideBar.border' ,
133
126
} ) }
134
127
>
135
- < Text weight = "bold" > Notifications</ Text >
128
+ < Text weight = "regular" size = { 4 } >
129
+ Notifications
130
+ </ Text >
136
131
< Element >
137
132
{ userNotifications . notifications ? < Filters /> : null }
138
133
</ Element >
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ export const Alert: FunctionComponent<Props> = ({
33
33
{ ...props }
34
34
>
35
35
{ title && (
36
- < Text weight = "bold " block size = { 6 } paddingBottom = { 2 } >
36
+ < Text weight = "regular " block size = { 5 } paddingBottom = { 4 } >
37
37
{ title }
38
38
</ Text >
39
39
) }
Original file line number Diff line number Diff line change @@ -35,7 +35,13 @@ export const DeploymentModal: FunctionComponent = () => {
35
35
>
36
36
{ url ? (
37
37
< Element marginBottom = { 4 } >
38
- < Text weight = "bold" block size = { 4 } align = "center" paddingBottom = { 4 } >
38
+ < Text
39
+ weight = "regular"
40
+ block
41
+ size = { 4 }
42
+ align = "center"
43
+ paddingBottom = { 4 }
44
+ >
39
45
Deployed!
40
46
</ Text >
41
47
< Link variant = "muted" block size = { 3 } align = "center" href = { url } >
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ export const MoveSandboxFolderModal: FunctionComponent = () => {
75
75
gap = { 6 }
76
76
direction = "vertical"
77
77
>
78
- < Text size = { 6 } weight = "bold " >
78
+ < Text size = { 6 } weight = "regular " >
79
79
Move { modals . moveSandboxModal . sandboxIds . length } { ' ' }
80
80
{ modals . moveSandboxModal . sandboxIds . length > 1 ? 'items' : 'item' }
81
81
</ Text >
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ export const PilotPaymentModal: FunctionComponent = () => {
78
78
} ) }
79
79
>
80
80
< Element >
81
- < Text block marginBottom = { 6 } size = { 4 } weight = "bold " >
81
+ < Text block marginBottom = { 6 } size = { 4 } weight = "regular " >
82
82
Payment Info
83
83
</ Text >
84
84
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import { EditorTheme } from './EditorTheme';
8
8
9
9
export const Appearance : FunctionComponent = ( ) => (
10
10
< div >
11
- < Text block marginBottom = { 6 } size = { 4 } weight = "bold " >
11
+ < Text block marginBottom = { 6 } size = { 4 } weight = "regular " >
12
12
Appearance
13
13
</ Text >
14
14
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import { Prettier } from './Prettier';
6
6
7
7
export const CodeFormatting : FunctionComponent = ( ) => (
8
8
< >
9
- < Text block marginBottom = { 4 } size = { 4 } variant = "muted" weight = "bold " >
9
+ < Text block marginBottom = { 4 } size = { 4 } variant = "muted" weight = "regular " >
10
10
Prettier Settings{ ' ' }
11
11
< a
12
12
href = "https://prettier.io/docs/en/options.html"
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import { VimModeSettings } from './VimModeSettings';
8
8
9
9
export const Editor : React . FC = ( ) => (
10
10
< >
11
- < Text block marginBottom = { 6 } size = { 4 } weight = "bold " >
11
+ < Text block marginBottom = { 6 } size = { 4 } weight = "regular " >
12
12
Editor
13
13
</ Text >
14
14
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import { ContainerLSP } from './ContainerLSP';
7
7
8
8
export const Experiments : FunctionComponent = ( ) => (
9
9
< >
10
- < Text block marginBottom = { 6 } size = { 4 } weight = "bold " >
10
+ < Text block marginBottom = { 6 } size = { 4 } weight = "regular " >
11
11
Experiments
12
12
</ Text >
13
13
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import { Container } from './elements';
8
8
9
9
export const Integrations : FunctionComponent = ( ) => (
10
10
< div >
11
- < Text block marginBottom = { 6 } size = { 4 } weight = "bold " >
11
+ < Text block marginBottom = { 6 } size = { 4 } weight = "regular " >
12
12
Integrations
13
13
</ Text >
14
14
You can’t perform that action at this time.
0 commit comments