diff options
Diffstat (limited to 'webui/src/Label.tsx')
-rw-r--r-- | webui/src/Label.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/webui/src/Label.tsx b/webui/src/Label.tsx index 68c50b9d..a33b4c2c 100644 --- a/webui/src/Label.tsx +++ b/webui/src/Label.tsx @@ -1,13 +1,13 @@ -import React from 'react'; +import { common } from '@material-ui/core/colors'; import { makeStyles } from '@material-ui/core/styles'; import { getContrastRatio, darken, } from '@material-ui/core/styles/colorManipulator'; -import { common } from '@material-ui/core/colors'; +import React from 'react'; -import { Color } from './gqlTypes'; import { LabelFragment } from './Label.generated'; +import { Color } from './gqlTypes'; // Minimum contrast between the background and the text color const contrastThreshold = 2.5; |