computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
693 B
41 lines
693 B
5 years ago
|
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;
|
||
5 years ago
|
top: 6px;
|
||
5 years ago
|
left: -50px;
|
||
|
height: 100%;
|
||
|
`;
|
||
|
|
||
5 years ago
|
export const ShareIcon = styled.a`
|
||
|
display: block;
|
||
|
width: 22px;
|
||
|
height: 22px;
|
||
5 years ago
|
margin-bottom: 8px;
|
||
|
|
||
5 years ago
|
svg {
|
||
5 years ago
|
height: 22px !important;
|
||
|
width: 22px !important;
|
||
5 years ago
|
color: #757575;
|
||
|
transition: all 0.2s;
|
||
5 years ago
|
vertical-align: top;
|
||
5 years ago
|
}
|
||
|
|
||
|
&:hover svg {
|
||
|
color: #000000
|
||
5 years ago
|
}
|
||
5 years ago
|
`;
|