Skip to content

Commit e47063f

Browse files
committed
Toll plaza update
1 parent a6ff859 commit e47063f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

React_Learning/07_tollPlaza/src/TollPlaza.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ function TollPlaza() {
2323

2424
return (
2525
<div className="flex justify-center items-center flex-col">
26-
<h1 className="font-bold text-xl text-red-700">Toll Plaza</h1>
26+
<h1 className="font-bold text-4xl text-red-700">Toll Plaza</h1>
2727

2828
<form
2929
className="flex flex-col"
@@ -37,7 +37,7 @@ function TollPlaza() {
3737
<select
3838
id="options"
3939
name="options"
40-
className="border px-3 py-2 bg-slate-200"
40+
className="border px-3 py-2 bg-slate-200 text-xl"
4141
onChange={updatePrice}>
4242
<option value="bike">Bike</option>
4343
<option value="car">Car</option>
@@ -54,7 +54,7 @@ function TollPlaza() {
5454
</div>
5555
<button
5656
type="submit"
57-
className="m-2 p-3 bg-blue-500">
57+
className="m-2 p-3 bg-blue-500 font-bold">
5858
Submit
5959
</button>
6060
</form>

0 commit comments

Comments
 (0)