pixel-react-excel-sheet 1.0.60 → 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 +11 -14
- 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 +5 -3
- package/package.json +1 -1
|
@@ -133,8 +133,9 @@
|
|
|
133
133
|
}
|
|
134
134
|
|
|
135
135
|
.ff-spreadsheet-corner-header {
|
|
136
|
-
position:
|
|
137
|
-
|
|
136
|
+
position: fixed;
|
|
137
|
+
z-index: 2000;
|
|
138
|
+
border: 2px solid var(--border-color);
|
|
138
139
|
}
|
|
139
140
|
|
|
140
141
|
.ff-spreadsheet-row-header {
|
|
@@ -147,10 +148,11 @@
|
|
|
147
148
|
display: flex;
|
|
148
149
|
align-items: center;
|
|
149
150
|
justify-content: center;
|
|
150
|
-
position: fixed;
|
|
151
151
|
z-index: 1500;
|
|
152
|
+
top: -2px;
|
|
152
153
|
width: 58px;
|
|
153
154
|
height: 32px;
|
|
155
|
+
left: -1px;
|
|
154
156
|
}
|
|
155
157
|
|
|
156
158
|
.ff-spreadsheet-header--selected {
|
package/package.json
CHANGED