diff options
| author | Ben Woodward <ben@bdw.to> | 2021-08-28 09:13:19 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-28 09:13:19 -0700 |
| commit | 187d4451b4e397b7367d6cdf367021afaa2e19c4 (patch) | |
| tree | 9868d44063fe0f01dec6d9d4b141cad7dfcdafd4 /src/App.js | |
| parent | f3daa7d40d57bfc01070e470aba6036cd8af33cd (diff) | |
Always add paddingRight for rtl (#207)
* :bug: hotfix logo padding for rtl languages
* manually run prettier
* :bug: fix icons padding
* :bug: fix header padding
* Always add paddingRight for rtl
Co-authored-by: Tokyo <ahmed.tokyo1@gmail.com>
Diffstat (limited to 'src/App.js')
| -rw-r--r-- | src/App.js | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -108,7 +108,7 @@ function App() { | |||
| 108 | <Pane> | 108 | <Pane> |
| 109 | <Pane display="flex"> | 109 | <Pane display="flex"> |
| 110 | <img alt="icon" src={logo} width="32" height="32" /> | 110 | <img alt="icon" src={logo} width="32" height="32" /> |
| 111 | <Heading size={900} paddingLeft={16}> | 111 | <Heading size={900} paddingRight={16} paddingLeft={16}> |
| 112 | {t('title')} | 112 | {t('title')} |
| 113 | </Heading> | 113 | </Heading> |
| 114 | </Pane> | 114 | </Pane> |
