Skip to content

Commit ad6aaa2

Browse files
fix: [UIE-9657] - Alignment with Linode row backup cell icon (#13098)
* fix alignment * Added changeset: Alignment with Linode row backup cell icon
1 parent 959e2c4 commit ad6aaa2

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@linode/manager": Fixed
3+
---
4+
5+
Alignment with Linode row backup cell icon ([#13098](https://github.com/linode/manager/pull/13098))

packages/manager/src/components/BackupStatus/BackupStatus.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,13 @@ const useStyles = makeStyles<void, 'icon'>()(
1212
(theme: Theme, _params, classes) => ({
1313
backupLink: {
1414
'&:hover': {
15+
textDecoration: 'none',
1516
[`& .${classes.icon}`]: {
1617
fill: theme.palette.primary.main,
1718
},
1819
},
1920
display: 'flex',
21+
alignItems: 'center',
2022
},
2123
backupNotApplicable: {
2224
marginRight: theme.spacing(),
@@ -30,6 +32,8 @@ const useStyles = makeStyles<void, 'icon'>()(
3032
icon: {
3133
fill: theme.color.grey1,
3234
fontSize: 18,
35+
top: -1,
36+
position: 'relative',
3337
},
3438
tooltip: {
3539
maxWidth: 275,

0 commit comments

Comments
 (0)