pixel-react-excel-sheet 1.0.61 → 1.0.62
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/lib/components/Excel/ExcelFile/ExcelFile.js +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFile.js.map +1 -1
- package/lib/index.cjs +2 -2
- package/lib/index.cjs.map +1 -1
- package/lib/index.esm.js +1 -1
- package/lib/index.esm.js.br +0 -0
- package/lib/index.esm.js.map +1 -1
- package/lib/styles/Spreadsheet.scss +3 -2
- package/package.json +1 -1
|
@@ -135,7 +135,7 @@
|
|
|
135
135
|
.ff-spreadsheet-corner-header {
|
|
136
136
|
position: fixed;
|
|
137
137
|
z-index: 2000;
|
|
138
|
-
|
|
138
|
+
border: 2px solid var(--border-color);
|
|
139
139
|
}
|
|
140
140
|
|
|
141
141
|
.ff-spreadsheet-row-header {
|
|
@@ -148,10 +148,11 @@
|
|
|
148
148
|
display: flex;
|
|
149
149
|
align-items: center;
|
|
150
150
|
justify-content: center;
|
|
151
|
-
position: fixed;
|
|
152
151
|
z-index: 1500;
|
|
152
|
+
top: -2px;
|
|
153
153
|
width: 58px;
|
|
154
154
|
height: 32px;
|
|
155
|
+
left: -1px;
|
|
155
156
|
}
|
|
156
157
|
|
|
157
158
|
.ff-spreadsheet-header--selected {
|
package/package.json
CHANGED