1 2 3 4 5 6 7 8 9 10 11 12 13 14
import styled from "styled-components"; export const Text = styled.p` text-align: center; font-family: "Roboto Mono", monospace; font-size: 0.75rem; color: var(--cl-gray-5); margin-top: 48px; `; export const Link = styled.a` color: var(--cl-gray-6) !important; &:hover { color: var(--cl-magenta-7) !important; } `;
[PATCH repo_name]