Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tailwind adjustments #64

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 23 additions & 13 deletions client/components/PersonalGoals.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,29 @@ export default function PersonalGoals() {
return (
<div>
<Navbar/>
<div className='flow content-center place-content-center h-60 w-60'>
<AccordionRepeat
summary={<div>Diabetes Goals</div>}
details={<div>Sugar Goals: <input className='border-2 border-solid border-black rounded-lg'></input></div>}
/>
<AccordionRepeat
summary={<div>Hypertension Goals</div>}
details={<div>Blood Pressure Goals: <input/></div>}
/>
<AccordionRepeat
summary={<div>Exercise Goals</div>}
details={<div>Exercise Goals: </div>}
/>
<div className='flex-col w-6/12 h-80 content-center bg-slate-300 align-middle'>
<div className='flex-col w-8/12 h-48 content-center bg-slate-500'>
<div>
Sugar Goal:
</div>
<div>
Blood Pressure Goal:
</div>
</div>
<div className='flow content-center place-content-center h-60 w-60'>
<AccordionRepeat
summary={<div>Diabetes Goals</div>}
details={<div>Sugar Goals: <input className='border-2 border-solid border-black rounded-lg'></input></div>}
/>
<AccordionRepeat
summary={<div>Hypertension Goals</div>}
details={<div>Blood Pressure Goals: <input/></div>}
/>
<AccordionRepeat
summary={<div>Exercise Goals</div>}
details={<div>Exercise Goals: </div>}
/>
</div>
</div>
</div>
)
Expand Down