Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

플로팅 버튼 스타일 수정 #268

Merged
merged 3 commits into from
Dec 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/FloatingButton/FloatingButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ const FloatingButton = () => {

return (
<>
<div className="fixed bottom-4 left-[427px] right-0 z-50 mx-auto w-10">
<div className="fixed bottom-10 left-1/2 right-0 z-40 flex h-0 w-full max-w-[500px] -translate-x-1/2 items-center justify-end pr-4 font-bold text-gray9">
<button
onClick={() =>
isLoggedIn ? router.push(`/space/create`) : modalOpen()
}
className="z-50 h-10 w-10 cursor-pointer rounded-full border border-slate6 bg-bgColor text-slate6 shadow-lg">
className="h-10 w-10 cursor-pointer rounded-full border border-slate6 bg-bgColor text-slate6 shadow-lg">
<PlusSmallIcon />
</button>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/TagInput/TagInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ const TagInput = ({
</button>
)}
<input
className="w-full py-0.5 text-sm font-medium text-gray9 placeholder-gray4 outline-none"
className="w-full bg-bgColor py-0.5 text-sm font-medium text-gray9 placeholder-gray4 outline-none"
type={selectedTag && 'hidden'}
placeholder={LINK_FORM_PLACEHOLDER.TAG}
{...register('tagName', {
Expand Down
1 change: 0 additions & 1 deletion src/components/UserInfoForm/UserInfoForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,6 @@ const UserInfoForm = ({ userData, formType }: UserInfoFormProps) => {
const handleSettingUser = async (
data: RegisterReqBody & EmailVerifyReqBody,
) => {
console.log(data.favoriteCategory)
try {
userData?.memberId &&
(await fetchPostUserProfile(userData?.memberId, data, imageFile))
Expand Down