style(font): font size 14
This commit is contained in:
@@ -7,7 +7,7 @@ import SealSelect from '@/components/seal-form/seal-select';
|
||||
import TooltipList from '@/components/tooltip-list';
|
||||
import { PageActionType } from '@/config/types';
|
||||
import useAppUtils from '@/hooks/use-app-utils';
|
||||
import { QuestionCircleOutlined, RightOutlined } from '@ant-design/icons';
|
||||
import { QuestionCircleOutlined } from '@ant-design/icons';
|
||||
import { useIntl } from '@umijs/max';
|
||||
import {
|
||||
Checkbox,
|
||||
@@ -478,10 +478,11 @@ const AdvanceConfig: React.FC<AdvanceConfigProps> = (props) => {
|
||||
destroyInactivePanel={false}
|
||||
className={dataformStyles['advanced-collapse']}
|
||||
expandIcon={({ isActive }) => (
|
||||
<RightOutlined
|
||||
rotate={isActive ? 90 : 0}
|
||||
style={{ fontSize: '12px' }}
|
||||
/>
|
||||
<IconFont
|
||||
type="icon-down"
|
||||
rotate={isActive ? 0 : -90}
|
||||
style={{ fontSize: '14px' }}
|
||||
></IconFont>
|
||||
)}
|
||||
items={collapseItems}
|
||||
></Collapse>
|
||||
|
||||
@@ -27,7 +27,7 @@ import {
|
||||
message
|
||||
} from 'antd';
|
||||
import _ from 'lodash';
|
||||
import { useCallback, useState } from 'react';
|
||||
import React, { useCallback, useState } from 'react';
|
||||
import { useHotkeys } from 'react-hotkeys-hook';
|
||||
import { deleteWorker, queryWorkersList, updateWorker } from '../apis';
|
||||
import { WorkerStatusMapValue, status } from '../config';
|
||||
@@ -308,7 +308,7 @@ const Workers: React.FC = () => {
|
||||
borderRadius: 12
|
||||
}}
|
||||
>
|
||||
<span className="font-700">{key}</span>
|
||||
<span className="font-600">{key}</span>
|
||||
<span className="text-tertiary">:{value}</span>
|
||||
</AutoTooltip>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user