-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0325b87
commit 65bab87
Showing
4 changed files
with
45 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 19 additions & 4 deletions
23
src/components/comment/signature/SignatureCommentList.style.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,25 @@ | ||
import styled from 'styled-components'; | ||
|
||
import theme from '@/theme'; | ||
|
||
const Container = styled.div` | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
${theme.ALIGN.COLUMN_CENTER}; | ||
max-height: 500px; | ||
width: 100%; | ||
overflow: scroll; | ||
&::-webkit-scrollbar { | ||
width: 4px; | ||
} | ||
&::-webkit-scrollbar-thumb { | ||
border-radius: 20px; | ||
background: #ccc; | ||
} | ||
`; | ||
|
||
const LoadingWrapper = styled.div` | ||
${theme.ALIGN.ROW_CENTER} | ||
height: 20px; | ||
`; | ||
|
||
export { Container }; | ||
export { Container, LoadingWrapper }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters