@matchain/matchid-sdk-react 0.1.37-alpha.1 → 0.1.37-alpha.2
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/index.css +5 -12
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -809,14 +809,13 @@ body {
|
|
|
809
809
|
|
|
810
810
|
.matchid-popover-area {
|
|
811
811
|
display: none;
|
|
812
|
+
position: absolute;
|
|
813
|
+
z-index: 100;
|
|
812
814
|
.matchid-popover-content {
|
|
813
|
-
position: absolute;
|
|
814
|
-
z-index: 100;
|
|
815
815
|
background: var(--matchid-popover-bg);
|
|
816
816
|
box-shadow: var(--matchid-shadow-middle);
|
|
817
817
|
border-radius: 12px;
|
|
818
818
|
padding: 16px 0;
|
|
819
|
-
display: none;
|
|
820
819
|
border: 1px solid var(--matchid-popover-bg);
|
|
821
820
|
}
|
|
822
821
|
|
|
@@ -830,36 +829,30 @@ body {
|
|
|
830
829
|
.matchid-popover-area{
|
|
831
830
|
display: block;
|
|
832
831
|
}
|
|
833
|
-
.matchid-popover-content {
|
|
834
|
-
display: block;
|
|
835
|
-
}
|
|
836
832
|
}
|
|
837
833
|
|
|
838
834
|
&.matchid-popover-hover:hover {
|
|
839
835
|
.matchid-popover-area{
|
|
840
836
|
display: block;
|
|
841
837
|
}
|
|
842
|
-
.matchid-popover-content {
|
|
843
|
-
display: block;
|
|
844
|
-
}
|
|
845
838
|
}
|
|
846
839
|
|
|
847
840
|
&.matchid-popover-left {
|
|
848
|
-
.matchid-popover-
|
|
841
|
+
.matchid-popover-area {
|
|
849
842
|
left: 0;
|
|
850
843
|
top: 100%;
|
|
851
844
|
}
|
|
852
845
|
}
|
|
853
846
|
|
|
854
847
|
&.matchid-popover-right {
|
|
855
|
-
.matchid-popover-
|
|
848
|
+
.matchid-popover-area {
|
|
856
849
|
right: 0;
|
|
857
850
|
top: 100%;
|
|
858
851
|
}
|
|
859
852
|
}
|
|
860
853
|
|
|
861
854
|
&.matchid-popover-center {
|
|
862
|
-
.matchid-popover-
|
|
855
|
+
.matchid-popover-area {
|
|
863
856
|
left: 50%;
|
|
864
857
|
top: 100%;
|
|
865
858
|
transform: translateX(-50%);
|