mirror of
https://github.com/apotdevin/thunderhub.git
synced 2025-02-22 22:25:21 +01:00
fix: small color change
This commit is contained in:
parent
a2aba0bd9c
commit
e22b6660d3
3 changed files with 7 additions and 5 deletions
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "app",
|
||||
"version": "0.1.6",
|
||||
"version": "0.1.6.1",
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@apollo/react-hooks": "^3.1.3",
|
||||
|
|
|
@ -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 = ({
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Add table
Reference in a new issue