Skip to content

Commit

Permalink
Merge pull request #1601 from woowacourse/hotfix-guest-profile
Browse files Browse the repository at this point in the history
fix: 아이콘 Dom 구조 변경으로 인한 드롭다운 표시 에러 수정
  • Loading branch information
Creative-Lee authored Oct 11, 2023
2 parents 4c6a678 + 34b2057 commit 719bf40
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions frontend/src/components/DropdownMenu/DropdownMenu.styles.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import styled from '@emotion/styled';
import COLOR from '../../constants/color';
import { css } from '@emotion/react';
import MEDIA_QUERY from '../../constants/mediaQuery';

const Container = styled.div<{
css: ReturnType<typeof css>;
Expand All @@ -15,7 +16,13 @@ const Container = styled.div<{
padding: 1rem 1.2rem;
position: absolute;
z-index: 100;
right: 30px;
top: 50px;
${MEDIA_QUERY.xs} {
right: 10px;
top: 40px;
}
/* transform: translateY(30%); */
&& {
Expand Down

0 comments on commit 719bf40

Please sign in to comment.