File tree Expand file tree Collapse file tree 2 files changed +17
-8
lines changed
src/components/pages/profile/[name]/registration/steps/Pricing Expand file tree Collapse file tree 2 files changed +17
-8
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ export class Login {
2828 /**
2929 * TEMP FIX
3030 * A bug in rainbow kit needs time to load the provider. Could be fixed in version 1.0.4
31- * Also throws eror with walletconnect if not enough time has passed.
31+ * Also throws error with walletconnect if not enough time has passed.
3232 */
3333 }
3434
Original file line number Diff line number Diff line change @@ -139,8 +139,20 @@ const InnerTooltip = styled.div(
139139 ` ,
140140)
141141
142- const ArrowContainer = styled . svg ( ( ) => css `` )
143- const BoxContainer = styled . svg ( ( ) => css `` )
142+ const ArrowContainer = styled . svg (
143+ ( { theme } ) => css `
144+ path {
145+ fill : ${ theme . colors . background } ;
146+ }
147+ ` ,
148+ )
149+ const BoxContainer = styled . svg (
150+ ( { theme } ) => css `
151+ g > rect {
152+ fill : ${ theme . colors . background } ;
153+ }
154+ ` ,
155+ )
144156
145157const TooltipWrapper = styled . div (
146158 ( { theme } ) => css `
@@ -184,14 +196,11 @@ const Tooltip = () => {
184196 < >
185197 < TooltipWrapper >
186198 < ArrowContainer viewBox = "81.89 0 14.22 72" fill = "none" xmlns = "http://www.w3.org/2000/svg" >
187- < path
188- d = "M92.2 64.4C90.6 66.5333 87.4 66.5333 85.8 64.4L81 58H97L92.2 64.4Z"
189- fill = "white"
190- />
199+ < path d = "M92.2 64.4C90.6 66.5333 87.4 66.5333 85.8 64.4L81 58H97L92.2 64.4Z" />
191200 </ ArrowContainer >
192201 < BoxContainer viewBox = "0 0 178 72" fill = "none" xmlns = "http://www.w3.org/2000/svg" >
193202 < g >
194- < rect x = "4" y = "2" width = "170" height = "56" rx = "8" fill = "white" />
203+ < rect x = "4" y = "2" width = "170" height = "56" rx = "8" />
195204 < foreignObject x = "4" y = "2" width = "170" height = "56" >
196205 < InnerTooltip >
197206 < Typography />
You can’t perform that action at this time.
0 commit comments