identity-admin-ui 1.10.18 → 1.10.19

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.
@@ -1,4 +1,5 @@
1
1
  import IResource from '../../context/Resource';
2
+ import '../../theme/globals.css';
2
3
  export interface ICreateNewDialog {
3
4
  open: boolean;
4
5
  onDismiss: () => void;
@@ -1,5 +1,5 @@
1
1
  export declare enum WidthType {
2
2
  FULL = 12,
3
- HALF = 6
3
+ HALF = 5.8
4
4
  }
5
5
  export declare function getFieldWidth(key: string, schema: any, formProperties: string[], currentIndex: number, newLine: boolean): WidthType;
package/lib/esm/index.css CHANGED
@@ -1,3 +1,23 @@
1
+ ::-webkit-scrollbar {
2
+ width: 4px;
3
+ height: 4px;
4
+ }
5
+
6
+ ::-webkit-scrollbar-track {
7
+ background: transparent;
8
+ border-radius: 10px;
9
+ }
10
+
11
+ ::-webkit-scrollbar-thumb {
12
+ background-color: #888;
13
+ border-radius: 10px;
14
+ }
15
+
16
+ ::-webkit-scrollbar-thumb:hover {
17
+ background: #555;
18
+ }
19
+
20
+
1
21
  /*!
2
22
  Theme: Tomorrow Night
3
23
  Author: Chris Kempson (http://chriskempson.com)