Skip to content

Commit

Permalink
[๐ŸŽ€ : style] ํƒ€์ž„๋ผ์ธ ์Šคํฌ๋กค๋ฐ” ์Šคํƒ€์ผ๋ง (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
sryung1225 committed Jan 31, 2024
1 parent a2afb7e commit aed6b4d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/styles/profile-form.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export const AttachAvatarChange: React.ComponentType<
svg {
width: 15px;
height: 15px;
stroke: ${({ theme }) => theme.colors.white};
stroke: ${({ theme }) => theme.colors.background};
stroke-width: 3px;
}
`;
Expand Down
13 changes: 13 additions & 0 deletions src/styles/timeline.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,22 @@
import styled from 'styled-components';
import { rgba } from 'polished';

export const TimelineWrapper = styled.ul`
display: block;
margin-top: 10px;
overflow-y: auto;
&::-webkit-scrollbar {
width: 12px;
}
&::-webkit-scrollbar-thumb {
margin: 1px;
background-color: ${({ theme }) => theme.colors.primary};
border-radius: 5px;
}
&::-webkit-scrollbar-track {
background-color: ${({ theme }) => rgba(theme.colors.gray, 0.3)};
border-radius: 5px;
}
`;

export const Text = styled.p`
Expand Down

0 comments on commit aed6b4d

Please sign in to comment.