This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
.embeddedServiceHelpButton .helpButton .uiButton { | |
background-color: #0068B5; | |
font-family: "Founders Grotesk", "Roboto", sans-serif; | |
font-size: 0.600em; | |
min-width: 9em; | |
max-width: 11em; | |
} | |
.embeddedServiceHelpButton .helpButton .uiButton:focus { | |
outline: 1px solid #0068B5; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Link as MuiLink, LinkProps as MuiLinkProps } from '@mui/material' | |
import NextLink, { LinkProps as NextLinkProps } from 'next/link' | |
import { useRouter } from 'next/router' | |
import * as React from 'react' | |
import { useStyles } from 'tss-react/mui' | |
import { colors } from 'lib/root' | |
/* eslint-disable jsx-a11y/anchor-has-content */ | |
interface NextLinkComposedProps |
OlderNewer