Skip to content

Commit

Permalink
Add top padding to the taxes and tags settings page description
Browse files Browse the repository at this point in the history
  • Loading branch information
mountiny committed Mar 18, 2024
1 parent 22bd9eb commit 5753a7c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pages/workspace/tags/WorkspaceTagsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ function WorkspaceTagsPage({policyTags, route}: WorkspaceTagsPageProps) {
{!isSmallScreenWidth && headerButtons}
</HeaderWithBackButton>
{isSmallScreenWidth && <View style={[styles.pl5, styles.pr5]}>{headerButtons}</View>}
<View style={[styles.ph5, styles.pb5]}>
<View style={[styles.ph5, styles.pb5, styles.pt3]}>
<Text style={[styles.textNormal, styles.colorMuted]}>{translate('workspace.tags.subtitle')}</Text>
</View>
{isLoading && (
Expand Down
2 changes: 1 addition & 1 deletion src/pages/workspace/taxes/WorkspaceTaxesPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ function WorkspaceTaxesPage({policy, route}: WorkspaceTaxesPageProps) {

{isSmallScreenWidth && <View style={[styles.pl5, styles.pr5]}>{headerButtons}</View>}

<View style={[styles.ph5, styles.pb5]}>
<View style={[styles.ph5, styles.pb5, styles.pt3]}>
<Text style={[styles.textNormal, styles.colorMuted]}>{translate('workspace.taxes.subtitle')}</Text>
</View>
{isLoading && (
Expand Down

0 comments on commit 5753a7c

Please sign in to comment.