mirror of
https://github.com/owncast/owncast.git
synced 2024-11-28 19:19:06 +03:00
Linting fix
This commit is contained in:
parent
7b128a4662
commit
d3af066224
2 changed files with 4 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
import React, { FC, ReactNode, useEffect, useState } from 'react';
|
||||
import { ConfigProvider } from 'antd';
|
||||
import { AntdDefaultTokens } from '../../styles/antd-default';
|
||||
import AntdDefaultTokens from '../../styles/antd-default';
|
||||
|
||||
export type AntdThemeProps = {
|
||||
children: ReactNode;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
// TODO generate this file using style-definitions somehow
|
||||
|
||||
export const AntdDefaultTokens = {
|
||||
const AntdDefaultTokens = {
|
||||
colorLink: '#6544e9',
|
||||
colorLinkHover: '#7a5cf3',
|
||||
Modal: {
|
||||
|
@ -23,3 +23,5 @@ export const AntdDefaultTokens = {
|
|||
colorBgBase: '#e2e8f0',
|
||||
fontFamily: '"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"',
|
||||
};
|
||||
|
||||
export default AntdDefaultTokens;
|
||||
|
|
Loading…
Reference in a new issue