2019-11-02 19:41:40 +04:00
|
|
|
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;
|
2019-11-02 23:58:17 +04:00
|
|
|
svg {
|
|
|
|
height: 26px;
|
|
|
|
color: #101010;
|
|
|
|
}
|
2019-11-02 19:41:40 +04:00
|
|
|
`;
|