mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 21:00:31 +00:00
fix: cashflow service Arabic localization.
This commit is contained in:
9
src/utils/styled-components.js
Normal file
9
src/utils/styled-components.js
Normal file
@@ -0,0 +1,9 @@
|
||||
import { css } from 'styled-components';
|
||||
|
||||
export const whenRtl = (restCss) => css`
|
||||
${({ theme }) => theme.dir === 'rtl' && restCss}
|
||||
`;
|
||||
|
||||
export const whenLtr = (restCss) => css`
|
||||
${({ theme }) => !theme.dir === 'ltr' && restCss}
|
||||
`;
|
||||
Reference in New Issue
Block a user