logitude-dashboard-library 3.1.20 → 3.1.21
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 +9 -14
- package/dist/index.js +136 -78
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +136 -78
- package/dist/index.modern.js.map +1 -1
- package/dist/styles/dl-dashboard.scss +9 -14
- package/dist/types/widget.d.ts +1 -0
- package/package.json +1 -1
|
@@ -348,11 +348,11 @@ $dark-grey: #717585;
|
|
|
348
348
|
}
|
|
349
349
|
|
|
350
350
|
.kpi-custom-size {
|
|
351
|
-
-webkit-transform: scale(0.
|
|
352
|
-
-ms-transform: scale(0.
|
|
353
|
-
-o-transform: scale(0.
|
|
354
|
-
transform: scale(0.
|
|
355
|
-
margin-top: -
|
|
351
|
+
-webkit-transform: scale(0.62);
|
|
352
|
+
-ms-transform: scale(0.62);
|
|
353
|
+
-o-transform: scale(0.62);
|
|
354
|
+
transform: scale(0.62);
|
|
355
|
+
margin-top: -12px;
|
|
356
356
|
}
|
|
357
357
|
|
|
358
358
|
.margin-top-6 {
|
|
@@ -547,7 +547,7 @@ $dark-grey: #717585;
|
|
|
547
547
|
box-sizing: border-box;
|
|
548
548
|
display: flex;
|
|
549
549
|
place-content: flex-end flex-start;
|
|
550
|
-
align-items:
|
|
550
|
+
align-items: center;
|
|
551
551
|
max-width: 100%;
|
|
552
552
|
}
|
|
553
553
|
|
|
@@ -558,7 +558,6 @@ $dark-grey: #717585;
|
|
|
558
558
|
.dl-kpi-label-span{
|
|
559
559
|
font-family: "Manrope";
|
|
560
560
|
font-style: normal;
|
|
561
|
-
font-weight: 700;
|
|
562
561
|
font-size: 16px;
|
|
563
562
|
line-height: 120%;
|
|
564
563
|
color: #292D30;
|
|
@@ -702,8 +701,7 @@ $dark-grey: #717585;
|
|
|
702
701
|
font-size: 11px;
|
|
703
702
|
line-height: 15px;
|
|
704
703
|
color: #A4A4A4;
|
|
705
|
-
margin-left:
|
|
706
|
-
margin-bottom: 6px;
|
|
704
|
+
margin-left: 5px;
|
|
707
705
|
flex-shrink: 0;
|
|
708
706
|
}
|
|
709
707
|
|
|
@@ -846,10 +844,8 @@ $dark-grey: #717585;
|
|
|
846
844
|
|
|
847
845
|
.dl-kpi-prev-container {
|
|
848
846
|
display: flex;
|
|
849
|
-
align-
|
|
850
|
-
|
|
851
|
-
place-content: flex-end flex-start;
|
|
852
|
-
justify-content: flex-start;
|
|
847
|
+
align-items: center;
|
|
848
|
+
justify-content: center;
|
|
853
849
|
font-family: 'Manrope';
|
|
854
850
|
font-style: normal;
|
|
855
851
|
font-weight: 500;
|
|
@@ -862,7 +858,6 @@ $dark-grey: #717585;
|
|
|
862
858
|
font-style: normal;
|
|
863
859
|
font-weight: 500;
|
|
864
860
|
font-size: 12px;
|
|
865
|
-
line-height: 15px;
|
|
866
861
|
color: #292D30;
|
|
867
862
|
}
|
|
868
863
|
|
package/dist/types/widget.d.ts
CHANGED