mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2025-09-25 16:39:02 +02:00
14 lines
273 B
JavaScript
14 lines
273 B
JavaScript
import styled from 'styled-components';
|
|
|
|
export const StrongLink = styled.a`
|
|
border-bottom: 2px solid currentColor;
|
|
position: relative;
|
|
transition: background-color 120ms;
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
|
|
&:hover {
|
|
text-decoration: none;
|
|
}
|
|
`;
|