Skip to content

Commit

Permalink
style : QA 이후 디자인 변경 (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
Brokyeom authored Sep 17, 2023
1 parent bcbec06 commit 582880d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
12 changes: 6 additions & 6 deletions apps/web/src/components/common/NoticeButton.tsx
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
'use Client';
'use client';

import Link from 'next/link';
import React from 'react';

export default function NoticeButton() {
return (
<div className='mb-[9.3rem] mt-[4rem] flex flex-col gap-[1.2rem] md:flex-row'>
<div className='mb-[9.3rem] mt-[4rem] flex flex-col gap-[0.8rem] md:flex-row md:gap-[1.2rem]'>
<Link
href='https://docs.google.com/forms/d/e/1FAIpQLScQQoHcjvOBnPAsNU_PJ27pO5ymNjoYfFIXt2n46KxjuPCSbg/viewform'
className='w-[23rem]'
className='w-[19.2rem] md:w-[21.2rem]'
>
<p className='md:text-18-bold text-black100 text-16-bold flex items-center justify-center gap-[0.6rem] rounded-[0.6rem] bg-white px-[2rem] py-[1.6rem]'>
<p className='text-14-semibold text-black100 md:text-16-semibold flex items-center justify-center gap-[0.6rem] rounded-[0.6rem] bg-white px-[2rem] py-[1.4rem] md:py-[1.6rem]'>
<NoticeIcon />
4기 모집 알림 신청
</p>
</Link>
<Link href='/recruit/' className='w-[23rem]'>
<p className='md:text-18-bold text-16-bold bg-gray2 flex items-center justify-center gap-[0.6rem] rounded-[0.6rem] px-[2rem] py-[1.6rem] text-white'>
<Link href='/recruit/' className='w-[19.2rem] md:w-[21.2rem]'>
<p className='text-14-semibold md:text-16-semibold bg-gray2 flex items-center justify-center gap-[0.6rem] rounded-[0.6rem] px-[2rem] py-[1.4rem] text-white md:py-[1.6rem]'>
<ArrowIcon />
3기 모집글 보기 (마감)
</p>
Expand Down
2 changes: 2 additions & 0 deletions apps/web/src/components/mainpage/greeting/Intro.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import clsx from 'clsx';
import { m, useScroll, useTransform } from 'framer-motion';
import { SVGProps, useRef } from 'react';
Expand Down
3 changes: 2 additions & 1 deletion apps/web/tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,10 @@ module.exports = {
'18-bold': ['1.8rem', { lineHeight: '140%', letterSpacing: '-0.036rem', fontWeight: 700 }],
'18-semibold': ['1.8rem', { lineHeight: '150%', letterSpacing: '-0.036rem', fontWeight: 600 }],
'18-regular': ['1.8rem', { lineHeight: '150%', letterSpacing: '-0.036rem', fontWeight: 400 }],
'16-bold': ['1.6rem', { lineHeight: '140%', letterSpacing: '-0.036rem', fontWeight: 700 }],
'16-semibold': ['1.6rem', { lineHeight: '140%', letterSpacing: '-0.036rem', fontWeight: 500 }],
'16-regular': ['1.6rem', { lineHeight: '130%', letterSpacing: '-0.036rem', fontWeight: 400 }],
'16-regular-desc': ['1.6rem', { lineHeight: '160%', letterSpacing: '-0.128rem', fontWeight: 400 }],
'14-semibold': ['1.4rem', { lineHeight: '140%', letterSpacing: '-0.128rem', fontWeight: 500 }],
},
backgroundImage: {
'makers-logo':
Expand Down

0 comments on commit 582880d

Please sign in to comment.