@tap-payments/os-micro-frontend-shared 0.1.357 → 0.1.358
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -117,19 +117,21 @@ export const StatusCellContainer = styled('span')(({ theme }) => ({
|
|
|
117
117
|
justifyContent: 'flex-start',
|
|
118
118
|
gap: theme.spacing(1),
|
|
119
119
|
}));
|
|
120
|
-
export const StatusIconWrapper = styled('span')(() => ({
|
|
121
|
-
width: '
|
|
120
|
+
export const StatusIconWrapper = styled('span')(({ theme }) => ({
|
|
121
|
+
width: '36px',
|
|
122
122
|
height: '24px',
|
|
123
|
-
borderRadius: '
|
|
124
|
-
backgroundColor:
|
|
123
|
+
borderRadius: '23.1px',
|
|
124
|
+
backgroundColor: theme.palette.common.white,
|
|
125
|
+
border: `1.029px solid ${theme.palette.divider}`,
|
|
125
126
|
display: 'flex',
|
|
126
127
|
alignItems: 'center',
|
|
127
128
|
justifyContent: 'center',
|
|
128
129
|
flexShrink: 0,
|
|
129
130
|
}));
|
|
130
131
|
export const StatusIcon = styled('img')(() => ({
|
|
131
|
-
width: '
|
|
132
|
-
height: '
|
|
132
|
+
width: '16px',
|
|
133
|
+
height: '16px',
|
|
134
|
+
objectFit: 'contain',
|
|
133
135
|
}));
|
|
134
136
|
export const PiePercentage = styled('div')(({ percentage, isCapture, theme }) => ({
|
|
135
137
|
background: `conic-gradient(${isCapture ? theme.palette.info.dark : '#656565'} ${percentage}%, transparent 0.00%)`,
|
package/package.json
CHANGED