File tree 5 files changed +14
-8
lines changed
5 files changed +14
-8
lines changed Original file line number Diff line number Diff line change 2
2
text-align : center;
3
3
margin-top : 50px ;
4
4
color : whitesmoke;
5
+ padding-top : 60px ;
5
6
}
6
7
7
8
.status {
11
12
12
13
.board {
13
14
display : grid;
14
- grid-template-columns : repeat (3 , 100 px );
15
+ grid-template-columns : repeat (3 , 200 px );
15
16
grid-gap : 5px ;
16
17
justify-content : center;
18
+ padding-top : 30px ;
17
19
}
18
20
19
21
.square {
20
- width : 100 px ;
21
- height : 100 px ;
22
+ width : 200 px ;
23
+ height : 200 px ;
22
24
display : flex;
23
25
align-items : center;
24
26
justify-content : center;
32
34
}
33
35
34
36
.square : hover {
35
- background-color : aquamarine ;
37
+ background-color : lightskyblue ;
36
38
}
37
39
38
40
.square : active {
39
41
background-color : black;
40
42
}
41
43
.reset {
42
44
font-size : 16px ;
43
- margin-top : 20 px ;
45
+ margin-top : 30 px ;
44
46
padding : 10px 20px ;
45
47
cursor : pointer;
46
48
background-color : whitesmoke;
52
54
}
53
55
54
56
.reset : hover {
55
- background-color : aquamarine ;
57
+ background-color : lightskyblue ;
56
58
}
57
59
58
60
body {
59
61
background-color : black;
62
+ background-image : url ("purple-wave.jpg" );
63
+ background-size : contain;
64
+ background-repeat : no-repeat;
65
+ background-size : 100% ; /* Fills the container completely */
60
66
}
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ const App = () => {
30
30
? `Winner: ${ winner } `
31
31
: squares . every ( ( square ) => square ) // Check if all squares are filled
32
32
? 'Tie'
33
- : `Next player : ${ xIsNext ? 'X' : 'O' } ` ;
33
+ : `Player Turn : ${ xIsNext ? 'X' : 'O' } ` ;
34
34
35
35
const handleClick = ( i ) => {
36
36
if ( squares [ i ] || winner ) {
@@ -51,7 +51,7 @@ const App = () => {
51
51
52
52
return (
53
53
< div className = "App" >
54
- < div className = "status" > { status } </ div >
54
+ < div className = "status" > < b > { status } </ b > </ div >
55
55
< div className = "board" >
56
56
{ squares . map ( ( value , index ) => (
57
57
< div
You can’t perform that action at this time.
0 commit comments