fix: replace cyrillic character (#72)

keep-around/af30b88d367751c9e05a735e4a0467a96238ef47
Ruslan Khayrullin 5 years ago committed by GitHub
parent 7c63c7da38
commit 9386eb834a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/features/Combobox/styled.tsx
  2. 2
      src/features/Common/customScrollbar/index.tsx
  3. 2
      src/features/Common/index.tsx
  4. 4
      src/features/HeaderFilters/components/TournamentFilter/styled.tsx
  5. 4
      src/features/Search/styled.tsx

@ -9,7 +9,7 @@ import {
} from '@reach/combobox'
import { wrapperStyles, inputStyles } from 'features/Common/Input/styled'
import { сustomScrollbar, customStylesMixin } from 'features/Common'
import { customScrollbar, customStylesMixin } from 'features/Common'
export const ComboboxStyled = styled(Combobox)`
${wrapperStyles}
@ -37,7 +37,7 @@ export const ComboboxListStyled = styled(ComboboxList)`
left: -164px;
overflow: auto;
${сustomScrollbar}
${customScrollbar}
${customStylesMixin}
`

@ -1,6 +1,6 @@
import { css } from 'styled-components/macro'
export const сustomScrollbar = css`
export const customScrollbar = css`
::-webkit-scrollbar {
width: 8px;
height: 8px;

@ -5,5 +5,5 @@ export * from './Checkbox'
export * from './Arrows'
export * from './CloseButton'
export * from './SportName'
export * from './сustomScrollbar'
export * from './customScrollbar'
export * from './customStyles'

@ -1,6 +1,6 @@
import styled from 'styled-components/macro'
import { сustomScrollbar } from 'features/Common'
import { customScrollbar } from 'features/Common'
export const ListWrapper = styled.div`
position: absolute;
@ -11,7 +11,7 @@ export const ListWrapper = styled.div`
overflow-y: scroll;
z-index: 2;
${сustomScrollbar}
${customScrollbar}
`
type Props = {

@ -1,6 +1,6 @@
import styled from 'styled-components/macro'
import { сustomScrollbar } from 'features/Common'
import { customScrollbar } from 'features/Common'
import {
InputWrapper,
InputStyled,
@ -61,5 +61,5 @@ export const Results = styled.div`
overflow-y: auto;
z-index: 1;
${сustomScrollbar}
${customScrollbar}
`

Loading…
Cancel
Save