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;
|
2019-11-30 14:27:37 +04:00
|
|
|
top: 0;
|
2019-11-30 09:06:06 +04:00
|
|
|
left: -40px;
|
2019-11-30 14:27:37 +04:00
|
|
|
min-height: 100%;
|
2019-11-02 19:41:40 +04:00
|
|
|
`;
|