Skip to content

Commit 1e00ff0

Browse files
committed
fix(FR-1780): Align the refresh button of the dashboard items
1 parent 7026414 commit 1e00ff0

File tree

6 files changed

+10
-6
lines changed

6 files changed

+10
-6
lines changed

react/src/components/ActiveAgents.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const ActiveAgents: React.FC<ActiveAgentsProps> = ({
2525
align="stretch"
2626
style={{
2727
paddingLeft: token.paddingXL,
28-
paddingRight: token.paddingXL,
28+
paddingRight: token.padding,
2929
height: '100%',
3030
}}
3131
>

react/src/components/AgentStats.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,8 @@ const AgentStats: React.FC<AgentStatsProps> = ({
151151
direction="column"
152152
align="stretch"
153153
style={{
154-
paddingInline: token.paddingXL,
154+
paddingLeft: token.paddingXL,
155+
paddingRight: token.padding,
155156
paddingBottom: token.padding,
156157
...props.style,
157158
}}

react/src/components/MyResource.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,8 @@ const MyResource: React.FC<MyResourceProps> = ({
140140
direction="column"
141141
align="stretch"
142142
style={{
143-
paddingInline: token.paddingXL,
143+
paddingLeft: token.paddingXL,
144+
paddingRight: token.padding,
144145
paddingBottom: token.padding,
145146
...props.style,
146147
}}

react/src/components/MyResourceWithinResourceGroup.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,8 @@ const MyResourceWithinResourceGroup: React.FC<
177177
direction="column"
178178
align="stretch"
179179
style={{
180-
paddingInline: token.paddingXL,
180+
paddingLeft: token.paddingXL,
181+
paddingRight: token.padding,
181182
paddingBottom: token.padding,
182183
...props.style,
183184
}}

react/src/components/RecentlyCreatedSession.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ const RecentlyCreatedSession: React.FC<RecentlyCreatedSessionProps> = ({
6464
align="stretch"
6565
style={{
6666
paddingLeft: token.paddingXL,
67-
paddingRight: token.paddingXL,
67+
paddingRight: token.padding,
6868
height: '100%',
6969
}}
7070
>

react/src/components/TotalResourceWithinResourceGroup.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,8 @@ const TotalResourceWithinResourceGroup: React.FC<
271271
direction="column"
272272
align="stretch"
273273
style={{
274-
paddingInline: token.paddingXL,
274+
paddingLeft: token.paddingXL,
275+
paddingRight: token.padding,
275276
paddingBottom: token.padding,
276277
...props.style,
277278
}}

0 commit comments

Comments
 (0)