style, utils 수정

This commit is contained in:
2025-06-12 14:16:46 +09:00
parent 38fa323db6
commit 93a7c087e1
2 changed files with 151 additions and 1 deletions

View File

@@ -679,6 +679,12 @@ export const SearchItem = styled.div`
}
`;
export const DownloadContainer = styled.div`
display: flex;
align-items: center;
gap: 10px;
`;
export const SearchRow = styled.div`
display: flex;
flex-wrap: wrap;
@@ -689,4 +695,43 @@ export const SearchRow = styled.div`
padding-top: 15px;
margin-top: 15px;
}
`;
export const TabScroll = styled.div`
width: 100%;
overflow: auto;
`;
export const TabItem = styled(Link)`
display: inline-flex;
width: 120px;
height: 30px;
justify-content: center;
align-items: center;
background: #f9f9f9;
border-left: 1px solid #d9d9d9;
&:hover {
background: #888;
color: #fff;
}
${props =>
props.$state === 'active' &&
`
background: #888;
color: #fff;`}
`;
export const TabWrapper = styled.ul`
display: flex;
li:first-child {
${TabItem} {
border-left: 0;
}
}
`;
export const CircularProgressWrapper = styled.div`
display: flex;
align-items: center;
justify-content: center;
`;