Commit 2a41c5ca authored by Venkaiah Naidu Singamchetty's avatar Venkaiah Naidu Singamchetty

Merge branch 'scorecarduidesigns' into 'master'

ui styles added

See merge request !8
parents 8a137330 b08eb841
...@@ -7,7 +7,7 @@ function Table({headers, data, isView}) { ...@@ -7,7 +7,7 @@ function Table({headers, data, isView}) {
<thead class="text-xs text-gray-700 uppercase bg-gray-50 dark:bg-gray-700 dark:text-gray-400"> <thead class="text-xs text-gray-700 uppercase bg-gray-50 dark:bg-gray-700 dark:text-gray-400">
<tr> <tr>
{headers.map((item) => ( {headers.map((item) => (
<th scope="col" class="px-6 py-3"> <th scope="col" class="px-6 py-3 font-bold">
{item.title} {item.title}
</th> </th>
))} ))}
......
...@@ -10,8 +10,10 @@ function Home() { ...@@ -10,8 +10,10 @@ function Home() {
}; };
return ( return (
<div className="container py-10 px-10 mx-0 min-w-full h-screen flex items-center justify-center"> <div className="container py-10 px-10 mx-0 min-w-full h-screen flex items-center justify-center bg-blue-100 ">
<div className="max-w-sm p-6 bg-white border border-gray-200 rounded-lg shadow dark:bg-gray-800 dark:border-gray-700 "> <div class="">
<h1 class="mb-4 text-4xl font-extrabold leading-none tracking-tight md:text-5xl lg:text-6xl text-purple-900 mb-10 ">SCORE CARD</h1>
<div className="max-w-sm p-10 bg-white border border-gray-400 rounded-lg shadow dark:bg-gray-800 dark:border-gray-700 ">
<label <label
for="email" for="email"
className="block mb-2 text-sm font-medium text-gray-900 dark:text-white" className="block mb-2 text-sm font-medium text-gray-900 dark:text-white"
...@@ -27,13 +29,14 @@ function Home() { ...@@ -27,13 +29,14 @@ function Home() {
onChange={(e) => setId(e.target.value)} onChange={(e) => setId(e.target.value)}
/> />
<button <button
className="bg-purple-900 text-white hover:bg-blue-400 font-bold py-2 px-4 mt-3 rounded" className="bg-purple-900 text-white disabled:bg-purple-900 hover:bg-blue-400 font-bold py-2 px-4 mt-6 rounded text-center ml-15"
onClick={handleNavigate} onClick={handleNavigate}
disabled={!id} disabled={!id}
> >
Score Card Submit
</button> </button>
</div> </div>
</div>
</div> </div>
); );
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment