File tree 2 files changed +7
-6
lines changed
packages/app/src/app/pages/common/Modals/ShareModal2 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -95,9 +95,9 @@ export const OptionDescription = styled.p(css({}));
95
95
96
96
export const Input = styled . input < { code ?: boolean } > ( ( { code } ) =>
97
97
css ( {
98
- backgroundColor : 'grays.700 ' ,
98
+ backgroundColor : 'grays.800 ' ,
99
99
border : '1px solid' ,
100
- borderColor : 'grays.800 ' ,
100
+ borderColor : 'grays.600 ' ,
101
101
color : 'white' ,
102
102
fontSize : 3 ,
103
103
borderRadius : 'small' ,
@@ -110,15 +110,15 @@ export const Input = styled.input<{ code?: boolean }>(({ code }) =>
110
110
fontFamily : code ? 'code' : 'body' ,
111
111
112
112
':hover' : {
113
- backgroundColor : 'grays.800 ' ,
113
+ backgroundColor : 'grays.700 ' ,
114
114
} ,
115
115
':focus' : {
116
116
backgroundColor : 'grays.800' ,
117
117
borderColor : 'grays.800' ,
118
118
outline : 'none' ,
119
119
} ,
120
120
':disabled:hover' : {
121
- backgroundColor : 'grays.700 ' ,
121
+ backgroundColor : 'grays.800 ' ,
122
122
} ,
123
123
} )
124
124
) ;
@@ -206,7 +206,8 @@ export const SwitchBase = styled.span(
206
206
width : 28 ,
207
207
height : 14 ,
208
208
borderRadius : 'large' ,
209
- background : '#040404' ,
209
+ backgroundColor : 'grays.800' ,
210
+ // TODO: add a focus state for switch
210
211
} )
211
212
) ;
212
213
Original file line number Diff line number Diff line change @@ -332,7 +332,7 @@ function ShareModal() {
332
332
value = { getIframeCode ( { settings, sandbox } ) }
333
333
ref = { urlContainer }
334
334
/>
335
- < Button onClick = { copyEmbedCode } >
335
+ < Button onClick = { copyEmbedCode } style = { { marginBottom : 8 } } >
336
336
{ copied ? 'Copied!' : 'Copy Embed Code' }
337
337
</ Button >
338
338
< Option multiline >
You can’t perform that action at this time.
0 commit comments