mirror of
https://github.com/trezor/trezor-wallet
synced 2024-11-24 09:18:09 +00:00
Fixed all stylelint errors
This commit is contained in:
parent
9a735f7b96
commit
82ef098c2a
@ -1,6 +1,7 @@
|
|||||||
/* @flow */
|
/* @flow */
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import styled from 'styled-components';
|
import styled from 'styled-components';
|
||||||
|
|
||||||
import colors from 'config/colors';
|
import colors from 'config/colors';
|
||||||
|
|
||||||
const Wrapper = styled.header`
|
const Wrapper = styled.header`
|
||||||
|
@ -17,7 +17,7 @@ import type { Props } from './index';
|
|||||||
import type { NetworkToken } from 'reducers/LocalStorageReducer';
|
import type { NetworkToken } from 'reducers/LocalStorageReducer';
|
||||||
|
|
||||||
const StyledH2 = styled(H2)`
|
const StyledH2 = styled(H2)`
|
||||||
padding: 20px 48px;
|
padding: 20px 48px;
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const Summary = (props: Props) => {
|
const Summary = (props: Props) => {
|
||||||
|
@ -23,9 +23,8 @@ const baseStyles = () => injectGlobal`
|
|||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
*:focus, *:active, *:active:focus, *::selection, *::-moz-selection {
|
*::selection, *::-moz-selection, *:focus, *:active, *:active:focus, {
|
||||||
outline: 0 !important;
|
outline: 0 !important;
|
||||||
-webkit-appearance: none;
|
|
||||||
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -42,11 +41,11 @@ const baseStyles = () => injectGlobal`
|
|||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'Roboto Zero';
|
font-family: 'Roboto Zero';
|
||||||
src: url('../fonts/roboto/RobotoZero.eot') format('embedded-opentype'),
|
src: url('../fonts/roboto/RobotoZero.eot') format('embedded-opentype'),
|
||||||
url('../fonts/roboto/RobotoZero.eot?#iefix') format('embedded-opentype'),
|
url('../fonts/roboto/RobotoZero.eot?#iefix') format('embedded-opentype'),
|
||||||
url('../fonts/roboto/RobotoZero.woff') format('woff'),
|
url('../fonts/roboto/RobotoZero.woff') format('woff'),
|
||||||
url('../fonts/roboto/RobotoZero.ttf') format('truetype');
|
url('../fonts/roboto/RobotoZero.ttf') format('truetype');
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
|
Loading…
Reference in New Issue
Block a user