Skip to content

Commit 9ac19c1

Browse files
committed
Merge remote-tracking branch 'origin/Score-Calc-Reformat' into Score-Calc-Reformat
2 parents 8e9b738 + 97d67d8 commit 9ac19c1

File tree

1 file changed

+29
-23
lines changed

1 file changed

+29
-23
lines changed

client/src/apps/pit/PitApp.tsx

Lines changed: 29 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -73,15 +73,15 @@ function PitApp() {
7373
</h1>
7474

7575
<h1 className='text-center text-3x1 text-white'>Pit Scouting Guide!</h1>
76-
<p className='text-center text-x1 text-white'>1. Introduce yourself to the team!</p>
77-
<p className='text-center text-x1 text-white'>Ex: "Hi I'm (name) and I'm from Team 4201.</p>
78-
<p className='text-center text-x1 text-white'>What are you guys working on?"</p>
79-
<p className='text-center text-x1 text-white'>2. Be curious! Engage with the members and</p>
80-
<p className='text-center text-x1 text-white'> don't treat them as if you're just surveying them. </p>
81-
<p className='text-center text-x1 text-white'>3. Compliment their robot and be friendly. </p>
82-
<p className='text-center text-x1 text-white'>Ease into questions about the robot. </p>
83-
<p className='text-center text-x1 text-white'>4. Be confident and uphold Gracious Professionalism.</p>
84-
<p className='text-center text-x1 text-white'>Good luck!!</p>
76+
<p className='text-center text-md text-white'>1. Introduce yourself to the team! <br/>
77+
Ex: "Hi I'm {scouterName} and I'm from Team 4201. <br/>
78+
What are you guys working on?" <br/>
79+
2. Be curious! Engage with the members and <br/>
80+
don't treat them as if you're just surveying them. <br/>
81+
3. Compliment their robot and be friendly. <br/>
82+
Ease into questions about the robot. <br/>
83+
4. Be confident and uphold Gracious Professionalism.<br/>
84+
Good luck!!</p>
8585
</div>
8686

8787
<div className='fixed left-4 top-4 z-20 flex flex-col gap-2 rounded-md bg-slate-200 p-2'>
@@ -121,9 +121,9 @@ function PitApp() {
121121
<ConeStacker />
122122
</div>
123123

124-
<div className='mb-2 flex items-center justify-center'>
124+
<div className='mb-6 flex items-center justify-center'>
125125
<div className='flex h-72 w-2/4 flex-col items-center justify-center rounded-lg border-4 border-[#2f3646] bg-[#2f3646]'>
126-
<h1 className='text-center text-white'>Team Number</h1>
126+
<h1 className='text-center text-white text-3xl font-bold'>Team Number</h1>
127127
<TeamDropdown
128128
onChange={setTeamNumber}
129129
value={teamNumber}
@@ -133,9 +133,9 @@ function PitApp() {
133133
</div>
134134

135135

136-
<div className='mb-8 flex items-center justify-center'>
136+
<div className='mb-6 flex items-center justify-center'>
137137
<div className='flex h-72 w-2/4 flex-col items-center justify-center rounded-lg border-4 border-[#2f3646] bg-[#2f3646] '>
138-
<h1 className='text-center text-white'>
138+
<h1 className='text-center text-white text-3xl'>
139139
Number of Batteries?
140140
</h1>
141141
<input
@@ -152,20 +152,26 @@ function PitApp() {
152152
</div>
153153
<div className='mb-8 flex items-center justify-center'>
154154

155-
<div className='flex h-72 w-2/4 flex-col items-center justify-center rounded-lg border-4 border-[#2f3646] bg-[#2f3646]'>
156-
<h1 className='text-center text-2xl text-white font-bold'>
157-
Intake?
155+
<div className='grid h-72 w-2/4 grid-cols-4 items-center justify-center rounded-lg border-4 border-[#2f3646] bg-[#2f3646] text-3xl'>
156+
<div className='col-span-4'>
157+
<h1 className='text-center text-4xl text-white font-bold'>
158+
Intake
158159
</h1>
159-
<h1 className= 'text-left text-white mr-2 '>
160-
Hopper?
160+
</div>
161+
162+
<div className='col-span-2 place-items-center justify-center'>
163+
<h1 className='text-left text-white mr-2 '>
164+
Hopper
161165
</h1>
162-
<input type='checkbox' className='form-checkbox h-5 w-5 text-blue-600'/>
163-
164-
166+
<input type='checkbox' className='form-checkbox h-12 w-12 text-blue-600'/>
167+
</div>
168+
<div className='col-span-2 place-items-center justify-center'>
165169
<h1 className= 'text-left text-white'>
166-
Funnel/Coral Intakes?
170+
Funnel/Coral Intakes
167171
</h1>
168-
<input type='checkbox' className='form-checkbox h-5 w-5 text-blue-600'/>
172+
<input type='checkbox' className='form-checkbox h-12 w-12 text-blue-600'/>
173+
</div>
174+
169175
</div>
170176

171177
</div>

0 commit comments

Comments
 (0)