mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2025-09-25 16:39:02 +02:00
22 lines
402 B
JavaScript
22 lines
402 B
JavaScript
import styled from 'styled-components';
|
|
|
|
export const ShareIconsList = styled.div`
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
position: sticky;
|
|
top: 65px;
|
|
`;
|
|
|
|
export const ShareWrap = styled.div`
|
|
display: flex;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
position: absolute;
|
|
padding: 0 0;
|
|
top: 0;
|
|
left: -40px;
|
|
min-height: 100%;
|
|
`;
|