@@ -250,7 +250,7 @@ const CreateChallengeForm = (props) => {
250
250
251
251
< div style = { { display : "flex" , flexDirection : "column" , justifyContent : "center" , alignContent : "center" } } >
252
252
253
- < Card >
253
+ < Card className = "settings-card" >
254
254
< h1 > Challenge Points:</ h1 >
255
255
< Form . Item
256
256
name = "points"
@@ -265,7 +265,7 @@ const CreateChallengeForm = (props) => {
265
265
</ Form . Item >
266
266
</ Card >
267
267
268
- < Card >
268
+ < Card className = "settings-card" >
269
269
< h1 > Maximum Number of Attempts (Set to 0 for unlimited)</ h1 >
270
270
< Form . Item
271
271
name = "max_attempts"
@@ -289,7 +289,7 @@ const CreateChallengeForm = (props) => {
289
289
{ ( fields , { add, remove } ) => {
290
290
291
291
return (
292
- < Card >
292
+ < Card className = "settings-card" >
293
293
< h1 > Flags</ h1 >
294
294
{ fields . map ( field => (
295
295
< Space key = { field . key } style = { { display : 'flex' , marginBottom : 8 } } align = "start" >
@@ -337,7 +337,7 @@ const CreateChallengeForm = (props) => {
337
337
< Form . List name = "tags" >
338
338
{ ( fields , { add, remove } ) => {
339
339
return (
340
- < Card >
340
+ < Card className = "settings-card" >
341
341
< h1 > Tags</ h1 >
342
342
{ fields . map ( field => (
343
343
< Space key = { field . key } style = { { display : 'flex' , marginBottom : 8 } } align = "start" >
@@ -388,7 +388,7 @@ const CreateChallengeForm = (props) => {
388
388
< Form . List name = "hints" >
389
389
{ ( fields , { add, remove } ) => {
390
390
return (
391
- < Card >
391
+ < Card className = "settings-card" >
392
392
< h1 > Hints</ h1 >
393
393
{ fields . map ( field => (
394
394
< Space key = { field . key } style = { { display : 'flex' , marginBottom : 8 } } align = "start" >
@@ -439,7 +439,7 @@ const CreateChallengeForm = (props) => {
439
439
} }
440
440
</ Form . List >
441
441
442
- < Card >
442
+ < Card className = "settings-card" >
443
443
< h1 > Writeup Link (Optional)</ h1 >
444
444
< Form . Item
445
445
name = "writeup"
@@ -462,7 +462,7 @@ const CreateChallengeForm = (props) => {
462
462
</ div >
463
463
</ Card >
464
464
465
- < Card >
465
+ < Card className = "settings-card" >
466
466
< h1 > Visibility</ h1 >
467
467
< Form . Item
468
468
name = "visibility"
@@ -502,7 +502,7 @@ const CreateChallengeForm = (props) => {
502
502
< p > Locks this challenge until the provided challenge above has been solved.</ p >
503
503
</ Card >
504
504
505
- < Card >
505
+ < Card className = "settings-card" >
506
506
< h1 > Dynamic Scoring</ h1 >
507
507
< Form . Item
508
508
name = "dynamic"
0 commit comments