logitude-dashboard-library 1.3.78 → 1.3.80
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/dist/assets/styles/dl-dashboard.scss +21 -2
- package/dist/index.js +196 -466
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +196 -466
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
|
@@ -94,6 +94,26 @@ $dark-grey: #717585;
|
|
|
94
94
|
|
|
95
95
|
.dl-full-hight {
|
|
96
96
|
height: 100%;
|
|
97
|
+
max-height: calc(100vh - 170px);
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.dl-full-hight-scroll {
|
|
101
|
+
height: 100%;
|
|
102
|
+
max-height: calc(100vh - 170px);
|
|
103
|
+
overflow: auto;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.dl-full-hight-scroll::-webkit-scrollbar {
|
|
107
|
+
width: 6px;
|
|
108
|
+
height: 6px;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.dl-full-hight-scroll::-webkit-scrollbar-track {
|
|
112
|
+
background: none;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.dl-full-hight-scroll::-webkit-scrollbar-thumb {
|
|
116
|
+
background: rgba(193, 193, 193, 1);
|
|
97
117
|
}
|
|
98
118
|
|
|
99
119
|
.dl-grid {
|
|
@@ -274,12 +294,11 @@ $dark-grey: #717585;
|
|
|
274
294
|
box-sizing: border-box;
|
|
275
295
|
position: relative;
|
|
276
296
|
height: 100%;
|
|
277
|
-
|
|
278
297
|
header {
|
|
279
298
|
display: flex;
|
|
280
299
|
justify-content: space-between;
|
|
281
300
|
align-items: center;
|
|
282
|
-
|
|
301
|
+
position: unset;
|
|
283
302
|
i {
|
|
284
303
|
font-size: 18px;
|
|
285
304
|
// color: colors.$red;
|