mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-25 11:59:11 +00:00
10 lines
286 B
TypeScript
10 lines
286 B
TypeScript
import styled, { css } from 'styled-components';
|
|
|
|
export const fontCSS = css`
|
|
font-family: 'source-han-sans-japanese', 'Source Sans Pro', sans-serif,
|
|
'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol' !important;
|
|
`;
|
|
|
|
export const UseFontStyled = styled.div`
|
|
${fontCSS}
|
|
`;
|