diff options
| -rw-r--r-- | src/pages/login.js | 2 | ||||
| -rw-r--r-- | src/pages/register.js | 2 | ||||
| -rw-r--r-- | src/styles/globals.css | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/pages/login.js b/src/pages/login.js index ab93b710..a559c613 100644 --- a/src/pages/login.js +++ b/src/pages/login.js @@ -58,7 +58,7 @@ export default function Login() { <Image src={Logo} alt="Logo Indoteknik" width={165} height={42} /> </Link> <h1 className="text-2xl mt-4 text-center">Mulai Belanja Sekarang</h1> - <h2 className="text-gray_r-11 text-body-2 font-normal mt-2 mb-4">Masuk ke akun kamu untuk belanja</h2> + <h2 className="text-gray_r-11 font-normal mt-2 mb-4">Masuk ke akun kamu untuk belanja</h2> {alert ? ( <Alert className="text-center" type={alert.type}>{alert.component}</Alert> ) : ''} diff --git a/src/pages/register.js b/src/pages/register.js index 26e7b222..46938d0b 100644 --- a/src/pages/register.js +++ b/src/pages/register.js @@ -56,7 +56,7 @@ export default function Login() { <Image src={Logo} alt="Logo Indoteknik" width={165} height={42} /> </Link> <h1 className="text-2xl mt-4 text-center">Mudahkan Pembelian dengan Indoteknik</h1> - <h2 className="text-gray_r-11 text-body-2 font-normal mt-2 mb-4">Daftar untuk melanjutkan belanja</h2> + <h2 className="text-gray_r-11 font-normal mt-2 mb-4">Daftar untuk melanjutkan belanja</h2> {alert ? ( <Alert className="text-center" type={alert.type}>{alert.component}</Alert> ) : ''} diff --git a/src/styles/globals.css b/src/styles/globals.css index 0d1f317d..3ecf04b8 100644 --- a/src/styles/globals.css +++ b/src/styles/globals.css @@ -16,14 +16,14 @@ html, body { @layer base { h1, .h1 { @apply - text-h-lg + text-h-md font-semibold ; } h2, .h2 { @apply - text-h-md + text-body-2 font-semibold leading-6 ; |
