We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25b7c79 commit b16f419Copy full SHA for b16f419
source/Grid/Grid.js
@@ -393,8 +393,7 @@ export default class Grid extends Component {
393
key={`row:${rowIndex}, column:${columnIndex}`}
394
className='Grid__cell'
395
style={{
396
- left: columnDatum.offset,
397
- top: rowDatum.offset,
+ transform: `translate(${columnDatum.offset}px, ${rowDatum.offset}px)`,
398
height: this._getRowHeight(rowIndex),
399
width: this._getColumnWidth(columnIndex)
400
}}
0 commit comments