Skip to content

Commit aa22d20

Browse files
Made the change to --pf-t--global-- in AccessConsoles, VncActions, SerialConsoleActions, and DesktopViewer.tsx (#94)
Co-authored-by: Parthivk100 <[email protected]>
1 parent 1cf89cb commit aa22d20

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

packages/module/src/components/AccessConsoles/AccessConsoles.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ const useStyles = createUseStyles({
1616
console: {
1717
display: 'grid',
1818
gridTemplateAreas: '\'actions-main actions-extra\'\n \'main main\'',
19-
rowGap: 'var(--pf-t-global--spacer--md)'
19+
rowGap: 'var(--pf-t--global--spacer--md)'
2020
},
2121
consoleActions: {
2222
gridArea: 'actions-main',
2323
display: 'flex',
2424
'> div': {
25-
marginRight: 'var(--pf-t-global--spacer--sm)'
25+
marginRight: 'var(--pf-t--global--spacer--sm)'
2626
}
2727
}
2828
});

packages/module/src/components/DesktopViewer/DesktopViewer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const useStyles = createUseStyles({
1010
consoleDesktopViewer: {
1111
gridArea: 'main',
1212
display: 'grid',
13-
gap: 'var(--pf-t-global--spacer--md)',
13+
gap: 'var(--pf-t--global--spacer--md)',
1414
gridTemplateColumns: 'repeat(auto-fit, minmax(20rem, 1fr))'
1515
}
1616
});

packages/module/src/components/SerialConsole/SerialConsoleActions.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const useStyles = createUseStyles({
99
display: 'flex',
1010
justifyContent: 'flex-end',
1111
'> button': {
12-
marginRight: 'var(--pf-t-global--spacer--sm)'
12+
marginRight: 'var(--pf-t--global--spacer--sm)'
1313
}
1414
}
1515
});

packages/module/src/components/VncConsole/VncActions.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const useStyles = createUseStyles({
1616
display: 'flex',
1717
flexWrap: 'wrap',
1818
justifyContent: 'flex-end',
19-
columnGap: 'var(--pf-t-global--spacer--sm)'
19+
columnGap: 'var(--pf-t--global--spacer--sm)'
2020
}
2121
});
2222
export interface VncActionProps {

0 commit comments

Comments
 (0)