Skip to content

Commit 61a6fb6

Browse files
author
Benjamin Perez
committed
Rest of console buttons
1 parent 53b0686 commit 61a6fb6

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

portal-ui/src/screens/Console/Configurations/SiteReplication/ReplicationSites.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,9 @@ const ReplicationSites = ({
245245
e.preventDefault();
246246
setIsDeleteSiteKey(key);
247247
}}
248+
style={{
249+
width: "25px", height: "25px", padding: "0",
250+
}}
248251
/>
249252
</TooltipWrapper>
250253
<TooltipWrapper tooltip={"Edit Endpoint"}>
@@ -256,6 +259,9 @@ const ReplicationSites = ({
256259
e.preventDefault();
257260
setEditSite(siteInfo);
258261
}}
262+
style={{
263+
width: "25px", height: "25px", padding: "0", marginLeft: "8px",
264+
}}
259265
/>
260266
</TooltipWrapper>
261267
</Box>

portal-ui/src/screens/Console/Configurations/SiteReplication/SiteReplication.tsx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,10 +119,13 @@ const SiteReplication = () => {
119119
display: "flex",
120120
alignItems: "center",
121121
justifyContent: "flex-end",
122+
"& button": {
123+
marginLeft: "8px",
124+
},
122125
}}
123126
>
124127
{hasSites ? (
125-
<Box>
128+
<Fragment>
126129
<TooltipWrapper tooltip={"Delete All"}>
127130
<Button
128131
id={"delete-all"}
@@ -147,7 +150,7 @@ const SiteReplication = () => {
147150
}}
148151
/>
149152
</TooltipWrapper>
150-
</Box>
153+
</Fragment>
151154
) : null}
152155
<TooltipWrapper tooltip={"Add Replication Sites"}>
153156
<Button

0 commit comments

Comments
 (0)