chore: adjust point value position

This commit is contained in:
jinhojang6 2024-10-24 22:08:23 +09:00
parent c54bee72c0
commit 49bd76e3a2
2 changed files with 11 additions and 11 deletions

View File

@ -8,7 +8,7 @@ export const Layout = styled.div`
export const Container = styled.div`
display: flex;
flex-direction: column;
overflow: hidden;
/* overflow: hidden; */
max-width: ${uiConfigs.maxContainerWidth}px;
margin: 0 auto;
padding: 8px 0 24px 0;

View File

@ -129,6 +129,7 @@ const Dropdown: React.FC = () => {
</DropdownContent>
)}
</div>
</DropdownHeader>
{walletAddress && (
<PointsButton>
<PointsValue>
@ -136,7 +137,6 @@ const Dropdown: React.FC = () => {
</PointsValue>
</PointsButton>
)}
</DropdownHeader>
</DropdownContainer>
)
}
@ -227,12 +227,12 @@ const PointsButton = styled.button`
width: fit-content;
position: absolute;
background-color: transparent;
cursor: pointer;
height: 28px;
border: 1px solid rgb(var(--lsd-border-primary));
padding: 8px 12px;
top: 36px;
right: 0;
top: 0px;
right: -60px;
z-index: 100000;
`
const PointsValue = styled.span`