Skip to content

Commit

Permalink
[Look&Feel] Adjust helper text size across monitor page
Browse files Browse the repository at this point in the history
Signed-off-by: Zhongnan Su <szhongna@amazon.com>
  • Loading branch information
zhongnansu committed Jul 22, 2024
1 parent 3c6cb06 commit 2873de8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ exports[`MonitorExpressions renders 1`] = `
</span>
</button>
<div
class="euiText euiText--medium"
class="euiText euiText--extraSmall"
style="padding-left:10px"
>
<div
Expand Down Expand Up @@ -232,7 +232,7 @@ exports[`MonitorExpressions renders 1`] = `
</span>
</button>
<div
class="euiText euiText--medium"
class="euiText euiText--extraSmall"
style="padding-left:10px"
>
<div
Expand Down Expand Up @@ -303,7 +303,7 @@ exports[`MonitorExpressions renders 1`] = `
/>
</div>
<div
class="euiText euiText--medium"
class="euiText euiText--extraSmall"
style="padding-left:10px"
>
<div
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ exports[`WhereExpression renders 1`] = `
</span>
</button>
<div
class="euiText euiText--medium"
class="euiText euiText--extraSmall"
style="padding-left:10px"
>
<div
Expand Down
2 changes: 1 addition & 1 deletion public/utils/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export const inputLimitText = (
limit === 1 ? singularKeyword : pluralKeyword
}.`;
return (
<EuiText color={'subdued'} size={'m'} style={styleProps}>
<EuiText color={'subdued'} size={'xs'} style={styleProps}>
{difference > 0 ? remainingLimit : reachedLimit}
</EuiText>
);
Expand Down

0 comments on commit 2873de8

Please sign in to comment.