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

41 lines
693 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-08 01:32:01 +04:00
top: 6px;
2019-11-02 19:41:40 +04:00
left: -50px;
height: 100%;
`;
2019-11-08 01:32:01 +04:00
export const ShareIcon = styled.a`
display: block;
width: 22px;
height: 22px;
2019-11-03 11:57:58 +04:00
margin-bottom: 8px;
2019-11-02 23:58:17 +04:00
svg {
2019-11-08 01:32:01 +04:00
height: 22px !important;
width: 22px !important;
2019-11-03 11:57:58 +04:00
color: #757575;
transition: all 0.2s;
2019-11-08 01:32:01 +04:00
vertical-align: top;
2019-11-03 11:57:58 +04:00
}
&:hover svg {
color: #000000
2019-11-02 23:58:17 +04:00
}
2019-11-03 11:57:58 +04:00
`;