Skip to content

Commit

Permalink
Merge pull request #53 from 4bujak-4bujak/feature/meetingroomQA
Browse files Browse the repository at this point in the history
Feature/meetingroom qa
  • Loading branch information
jiohjung98 authored Jun 12, 2024
2 parents 1f9c70c + 54a4ca8 commit 6b78fde
Show file tree
Hide file tree
Showing 5 changed files with 179 additions and 286 deletions.
2 changes: 1 addition & 1 deletion src/components/home/OfficeNotice.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const OfficeNotice: React.FC = () => {

return (
<>
<div className="w-full h-12 mt-7 bg-gray-200 flex items-center gap-[13px] px-[13px] py-[14px] rounded shadow border border-gray-200">
<div className="w-full h-12 mt-7 flex items-center gap-[13px] px-[13px] py-[14px] rounded shadow border border-gray-200" style={{ backgroundColor: 'rgb(228, 224, 245)' }}>
<div>
<img src="/home/notice.svg" alt="" />
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/layout/footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const Footer = () => {
)}
</div>
<div className="text-center text-black text-xs font-normal font-['Pretendard']">
예약/일정
예약
</div>
</div>
</Link>
Expand Down
11 changes: 6 additions & 5 deletions src/components/reservation/meetingRoom/DatePickerModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -330,11 +330,12 @@ const DatePickerModal: React.FC<DatePickerModalProps> = ({
</div>
)}
<div className="pt-[10px] w-full text-center items-center">
<button
className="absolute bottom-[30px] flex w-[88%] mx-auto h-12 bg-indigo-700 text-white rounded-lg justify-center items-center"
onClick={handleConfirm}>
확인
</button>
<button
className="absolute bottom-[30px] flex w-[88%] mx-auto h-12 text-white rounded-lg justify-center items-center"
style={{ backgroundColor: '#4E32BB' }}
onClick={handleConfirm}>
확인
</button>
</div>
</div>
</div>
Expand Down
Loading

0 comments on commit 6b78fde

Please sign in to comment.