Skip to content

Commit

Permalink
style: A B 마크에 색상 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
Leejha committed Oct 11, 2023
1 parent bac8c94 commit 25fa014
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import CommentForm from "app/vote/[id]/components/CommentForm";
import CommentToolBar from "app/vote/[id]/components/CommentToolbar";
import useCommentServices from "app/vote/[id]/services/useCommentServices";
import { queryKeys } from "lib/queryKeys";
import Link from "next/link";
import { useParams } from "next/navigation";
import { useState } from "react";
import styled from "styled-components";
Expand Down Expand Up @@ -94,7 +93,6 @@ function DrinkCommentContainer() {
userId: userId,
restaurant,
}}
mutateDeleteComment={() => void 0}
mutateLike={() => mutateLike(id)}
mutateHate={() => mutateHate(id)}
key={`comment_id_${index}`}
Expand Down
1 change: 1 addition & 0 deletions apps/jurumarble/src/components/AorBMark.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ const AorBMarkStyled = styled.div<{ AorB: string }>`
${({ theme, AorB }) => css`
${theme.typography.caption_chip}
background-color: ${AorB === "A" ? theme.colors.sub_01 : theme.colors.sub_02};
color: ${theme.colors.white};
position: absolute;
top: 0;
left: 0;
Expand Down

0 comments on commit 25fa014

Please sign in to comment.