mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2025-10-03 20:31:52 +02:00
29 lines
511 B
JavaScript
29 lines
511 B
JavaScript
import styled from 'styled-components';
|
|
|
|
export const ShareIconsList = styled.div`
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
position: sticky;
|
|
top: 50px;
|
|
`;
|
|
|
|
export const ShareWrap = styled.div`
|
|
display: flex;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
position: absolute;
|
|
padding: 0 0;
|
|
top: 0;
|
|
left: -50px;
|
|
height: 100%;
|
|
`;
|
|
|
|
export const ShareIcon = styled.span`
|
|
margin-bottom: 7px;
|
|
svg {
|
|
height: 26px;
|
|
color: #101010;
|
|
}
|
|
`; |