mirror of
https://github.com/pomerium/pomerium.git
synced 2025-08-06 10:21:05 +02:00
* style changes from mui 5 * fix spacing issue on small screen * remove unneeded import * add default exports * make linter happy * more style changes * use startCase from lodash Co-authored-by: Caleb Doxsey <cdoxsey@pomerium.com>
10 lines
284 B
TypeScript
10 lines
284 B
TypeScript
import * as React from 'react';
|
|
import { styled } from '@mui/system';
|
|
import {Link} from "@mui/material";
|
|
|
|
export const FooterLink = styled(Link)(({ theme }) => ({
|
|
fontSize: '1.25rem',
|
|
fontWeight: `bold`,
|
|
color: theme.palette.background.default,
|
|
}));
|
|
export default FooterLink;
|