diff options
| -rw-r--r-- | desktop/packages/mullvad-vpn/src/renderer/components/CustomDnsSettingsStyles.tsx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/desktop/packages/mullvad-vpn/src/renderer/components/CustomDnsSettingsStyles.tsx b/desktop/packages/mullvad-vpn/src/renderer/components/CustomDnsSettingsStyles.tsx index 9ed0ce1397..5b3ad153c7 100644 --- a/desktop/packages/mullvad-vpn/src/renderer/components/CustomDnsSettingsStyles.tsx +++ b/desktop/packages/mullvad-vpn/src/renderer/components/CustomDnsSettingsStyles.tsx @@ -1,6 +1,6 @@ import styled from 'styled-components'; -import { DeprecatedColors } from '../lib/foundations'; +import { colors } from '../lib/foundations'; import * as Cell from './cell'; export const StyledCustomDnsFooter = styled(Cell.CellFooter)({ @@ -20,17 +20,17 @@ export const StyledAddCustomDnsLabel = styled(Cell.Label)<{ $paddingLeft?: numbe export const StyledItemContainer = styled(Cell.Container)({ display: 'flex', - backgroundColor: DeprecatedColors.blue40, + backgroundColor: colors.blue40, '&&:hover': { - backgroundColor: DeprecatedColors.blue80, + backgroundColor: colors.blue80, }, }); export const AddServerContainer = styled(Cell.Container)({ display: 'flex', - backgroundColor: DeprecatedColors.blue20, + backgroundColor: colors.blue20, '&&:hover': { - backgroundColor: DeprecatedColors.blue60, + backgroundColor: colors.blue60, }, }); |
