seeder-st2110-components 1.6.0 → 1.6.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "seeder-st2110-components",
3
- "version": "1.6.0",
3
+ "version": "1.6.1",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.esm.js",
@@ -271,4 +271,28 @@
271
271
 
272
272
  .hidden {
273
273
  display: none;
274
+ }
275
+
276
+ .draggable-number-input {
277
+ box-sizing: border-box;
278
+ margin: 0;
279
+ padding: 4px 11px;
280
+ color: rgba(255, 255, 255, 0.85);
281
+ font-size: 14px;
282
+ line-height: 1.5714285714285714;
283
+ list-style: none;
284
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
285
+ position: relative;
286
+ display: inline-block;
287
+ width: 100%;
288
+ min-width: 0;
289
+ border-radius: 3px;
290
+ transition: all 0.2s;
291
+ background: #141414;
292
+ border-width: 1px;
293
+ border-style: solid;
294
+ border-color: #424242;
295
+ &:focus-visible {
296
+ outline: none !important;
297
+ }
274
298
  }