Files
spythere-portfolio/src/components/styles/Cursor.styled.ts
T
2023-09-02 15:00:48 +02:00

14 lines
291 B
TypeScript

import { styled } from 'styled-components';
export const StyledCursor = styled.span`
position: absolute;
top: 0;
left: calc(100% + 0.25em);
width: 15px;
height: 100%;
background-color: ${({ theme }) => theme.colors.primary};
animation: blinking 1s infinite;
`;