diff options
| author | Rafi Zadanly <rafizadanly@gmail.com> | 2022-12-22 16:20:51 +0700 |
|---|---|---|
| committer | Rafi Zadanly <rafizadanly@gmail.com> | 2022-12-22 16:20:51 +0700 |
| commit | 07b30e319f5a6f51ff5b044840345e05a9deb931 (patch) | |
| tree | f2672dc32a37719e2ea67349f89314c6aef2d955 /src/components | |
| parent | 31d6352ab8855754ef18c01763d3c1b5a68de857 (diff) | |
no message
Diffstat (limited to 'src/components')
| -rw-r--r-- | src/components/AppBar.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/AppBar.js b/src/components/AppBar.js index f22d630f..68a93f64 100644 --- a/src/components/AppBar.js +++ b/src/components/AppBar.js @@ -12,16 +12,16 @@ const AppBar = ({ title }) => { <Head> <title>{ title } - Indoteknik</title> </Head> - <div className="flex justify-between p-4 border-b border-gray_r-6"> + <div className="flex justify-between px-4 py-5 border-b border-gray_r-6"> {/* --- Start Title */} - <button type="button" onClick={() => router.back()} className="flex gap-x-2 text-gray_r-12"> + <button type="button" onClick={() => router.back()} className="flex gap-x-2 items-center text-gray_r-12"> <ChevronLeftIcon className="w-6 stroke-2"/> <h1>{ title }</h1> </button> {/* --- End Title */} {/* --- Start Icons */} - <div className="flex gap-x-3"> + <div className="flex gap-x-4"> <HeartIcon className="w-6 stroke-2"/> <Link href="/"> <HomeIcon className="w-6 stroke-2 text-gray_r-12"/> |
