Files
spythere-portfolio/src/components/styles/Cursor.styled.ts
T
2024-02-23 19:45:21 +01:00

14 lines
290 B
TypeScript

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