react-spreadsheet-grid
Version:
An Excel-like grid component for React with custom cell editors, performant scroll & resizable columns
21 lines (17 loc) • 370 B
CSS
.SpreadsheetGridContainer {
position: relative;
height: 100%;
}
.SpreadsheetGridContainer div,
.SpreadsheetGridContainer input {
box-sizing: border-box;
}
.SpreadsheetGridScrollWrapper {
position: relative;
transition: height 0.3s;
border-bottom: 1px solid #e6e1e8;
}
.SpreadsheetGridScrollWrapper_scrollable {
overflow-x: hidden;
overflow-y: auto;
}