@hexure/ui 1.13.51 → 1.13.52

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.
package/dist/cjs/index.js CHANGED
@@ -2103,9 +2103,9 @@ const ProgressBarFill = styled.div `
2103
2103
  content: '${props => (props.$percent === 0 ? '0' : props.$percent)}%';
2104
2104
  position: absolute;
2105
2105
  top: 55%;
2106
- left: ${props => props.$percent === 100 ? 'calc(100% - 20px)' : `calc(${props.$percent}% + 10px)`};
2106
+ left: ${props => props.$percent >= 83 ? 'calc(100% - 25px)' : `calc(${props.$percent}% + 10px)`};
2107
2107
  transform: translate(-50%, -50%);
2108
- color: ${props => (props.$percent === 100 ? '#fff' : '#757575')};
2108
+ color: ${props => (props.$percent >= 83 ? '#fff' : '#757575')};
2109
2109
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
2110
2110
  font-size: 8px;
2111
2111
  font-weight: 600;