Files
developer-roadmap/components/share-guide/style.js

36 lines
583 B
JavaScript
Raw Normal View History

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-03 11:57:58 +04:00
top: 2px;
2019-11-02 19:41:40 +04:00
left: -50px;
height: 100%;
`;
export const ShareIcon = styled.span`
2019-11-03 11:57:58 +04:00
margin-bottom: 8px;
2019-11-02 23:58:17 +04:00
svg {
2019-11-03 11:57:58 +04:00
height: 22px;
color: #757575;
transition: all 0.2s;
}
&:hover svg {
color: #000000
2019-11-02 23:58:17 +04:00
}
2019-11-03 11:57:58 +04:00
`;