File tree Expand file tree Collapse file tree 4 files changed +6
-4
lines changed
content/02-Primitive-Types/09-Combining-Types Expand file tree Collapse file tree 4 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ const SchemaError = ({ schemaPath }: { schemaPath: string }) => {
67
67
< b > Details:</ b > { errorDetails }
68
68
</ div >
69
69
< div style = { { marginTop : "10px" } } >
70
- < div > Possible Fixes:</ div >
70
+ < b > Possible Fixes:</ b >
71
71
< UnorderedList >
72
72
{ possibleFixes . map ( ( fix , index ) => (
73
73
< ListItem key = { index } > { fix } </ ListItem >
Original file line number Diff line number Diff line change 74
74
75
75
main {
76
76
height : 100% ;
77
- }
77
+ }
Original file line number Diff line number Diff line change @@ -17,7 +17,6 @@ const Button = {
17
17
} ,
18
18
success : {
19
19
color : "hsl(var(--success))" ,
20
-
21
20
borderColor : "hsl(var(--success))" ,
22
21
borderWidth : "1px" ,
23
22
_disabled : {
@@ -26,6 +25,9 @@ const Button = {
26
25
_hover : {
27
26
bg : "hsl(var(--success))" ,
28
27
color : "black" ,
28
+ "& svg path" : {
29
+ fill : "black" ,
30
+ } ,
29
31
_disabled : {
30
32
color : "hsl(var(--success) / 0.4)" ,
31
33
} ,
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ Let's add a new property `hasAgreedToTerms` to the JSON object. This property sh
20
20
21
21
### Boolean
22
22
23
- A ` boolean ` type can have two values: ` true ` or ` false ` . you can define a boolean type as follows:
23
+ A ` boolean ` type can have two values: ` true ` or ` false ` . You can define a boolean type as follows:
24
24
25
25
``` json
26
26
{
You can’t perform that action at this time.
0 commit comments