fix: small color change

This commit is contained in:
AP 2020-02-24 07:48:29 +01:00
parent a2aba0bd9c
commit e22b6660d3
3 changed files with 7 additions and 5 deletions

View file

@ -1,6 +1,6 @@
{
"name": "app",
"version": "0.1.6",
"version": "0.1.6.1",
"private": true,
"dependencies": {
"@apollo/react-hooks": "^3.1.3",

View file

@ -1,6 +1,6 @@
import React, { ReactNode } from 'react';
import { css } from 'styled-components';
import { cardColor, mediaWidths } from '../../styles/Themes';
import { cardColor, mediaWidths, themeColors } from '../../styles/Themes';
import ReactModal from 'styled-react-modal';
interface ModalProps {
@ -32,10 +32,11 @@ const generalCSS = css`
const StyleModal = ReactModal.styled`
${generalCSS}
min-width: 578px;
`;
`;
const StyleModalSmall = ReactModal.styled`
${generalCSS}
${generalCSS}
background-color: ${themeColors.white};
`;
const Modal = ({

View file

@ -5,6 +5,7 @@ import {
Card,
Sub4Title,
Separation,
InverseSubtitle,
} from '../../components/generic/Styled';
import { SettingsLine } from './Settings';
import {
@ -112,7 +113,7 @@ export const SyncSettings = () => {
closeCallback={() => setState('none')}
>
<QRWrapper>
<SubTitle>Scan with ThunderHub</SubTitle>
<InverseSubtitle>Scan with ThunderHub</InverseSubtitle>
<QRLoop connection={connection} />
</QRWrapper>
</Modal>