Skip to content

Commit

Permalink
chore : update css
Browse files Browse the repository at this point in the history
  • Loading branch information
0xC0FFE2 committed Jan 17, 2025
1 parent 02e85a1 commit a150a0e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 16 deletions.
2 changes: 1 addition & 1 deletion src/components/auth/LoginBanner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from 'react';

const LoginBanner = () => {
return (
<div className="w-[600px] relative bg-cover bg-center hidden sm:block" style={{
<div className="w-[600px] relative bg-cover bg-center hidden md:block" style={{
backgroundImage: `url('https://nanu.cc/NANU-Brand-Loader.jpg')`
}}>
<div className="absolute top-10 left-10">
Expand Down
4 changes: 2 additions & 2 deletions src/components/auth/LoginForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ interface LoginFormProps {
const LoginForm: React.FC<LoginFormProps> = ({ formData, onInputChange, onLogin }) => {
return (
<div className="flex-1 flex items-center justify-center p-8">
<div className="w-[360px]">
<h1 className="text-2xl font-bold mb-8">로그인</h1>
<div className="w-auto min-w-[280px]">
<h1 className="text-4xl font-bold mb-8">로그인</h1>
<form className="space-y-6">
<div className="space-y-4">
<input
Expand Down
20 changes: 7 additions & 13 deletions src/index.css
Original file line number Diff line number Diff line change
@@ -1,26 +1,20 @@
@import url('https://fastly.jsdelivr.net/gh/wanteddev/[email protected]/packages/wanted-sans/fonts/webfonts/variable/split/WantedSansVariable.min.css');

@tailwind base;
@tailwind components;
@tailwind utilities;

@font-face {
font-family: 'Paperlogy-8Regular';
src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/[email protected]/Paperlogy-8Regular.woff2') format('woff2');
font-weight: 300;
font-style: normal;
}

@font-face {
font-family: 'Paperlogy-8ExtraBold';
src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/[email protected]/Paperlogy-8ExtraBold.woff2') format('woff2');
font-weight: 800;
font-family: 'Freesentation-9Black';
src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/[email protected]/Freesentation-9Black.woff2') format('woff2');
font-weight: 900;
font-style: normal;
}

* {
font-family: 'Paperlogy-8Regular';
font-weight: 300;
font-family: 'Wanted Sans', sans-serif;
}

.font-bold {
font-family: 'Paperlogy-8ExtraBold';
font-family: 'Freesentation-9Black';
}

0 comments on commit a150a0e

Please sign in to comment.