File tree 1 file changed +14
-4
lines changed
packages/app/src/app/pages/Sandbox/Editor/Workspace/screens/Comments/Dialog 1 file changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -56,12 +56,12 @@ export const Comment = ({ source }) => {
56
56
source = { source }
57
57
renderers = { {
58
58
text : ( { children } ) => (
59
- < Text variant = "muted" size = { 13 } >
59
+ < Text variant = "muted" size = { 3 } >
60
60
{ children }
61
61
</ Text >
62
62
) ,
63
63
heading : ( { children } ) => (
64
- < Text block variant = "muted" size = { 13 } >
64
+ < Text block variant = "muted" size = { 3 } >
65
65
{ children }
66
66
</ Text >
67
67
) ,
@@ -74,9 +74,19 @@ export const Comment = ({ source }) => {
74
74
inlineCode : props => (
75
75
< Element
76
76
as = "span"
77
- css = { css ( { backgroundColor : 'mutedForeground' } ) }
77
+ css = { css ( {
78
+ backgroundColor : 'grays.200' ,
79
+ paddingX : '2px' ,
80
+ borderRadius : 'small' ,
81
+ } ) }
78
82
>
79
- < Text variant = "danger" as = "code" >
83
+ < Text
84
+ css = { css ( {
85
+ color : 'reds.500' ,
86
+ } ) }
87
+ size = { 3 }
88
+ as = "code"
89
+ >
80
90
{ props . children }
81
91
</ Text >
82
92
</ Element >
You can’t perform that action at this time.
0 commit comments