@ansiversa/components 0.0.47 → 0.0.48
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 +1 -1
- package/src/styles/global.css +15 -0
package/package.json
CHANGED
package/src/styles/global.css
CHANGED
|
@@ -845,6 +845,8 @@
|
|
|
845
845
|
justify-content: space-between;
|
|
846
846
|
gap: 1rem;
|
|
847
847
|
margin-bottom: 0.75rem;
|
|
848
|
+
position: relative;
|
|
849
|
+
z-index: 1;
|
|
848
850
|
}
|
|
849
851
|
|
|
850
852
|
.av-table-toolbar__title {
|
|
@@ -879,6 +881,12 @@
|
|
|
879
881
|
justify-content: flex-end;
|
|
880
882
|
}
|
|
881
883
|
|
|
884
|
+
.av-table-toolbar input,
|
|
885
|
+
.av-table-toolbar .av-input {
|
|
886
|
+
position: relative;
|
|
887
|
+
z-index: 1;
|
|
888
|
+
}
|
|
889
|
+
|
|
882
890
|
/* PAGER */
|
|
883
891
|
.av-table-pager {
|
|
884
892
|
display: flex;
|
|
@@ -978,6 +986,13 @@
|
|
|
978
986
|
|
|
979
987
|
.av-navbar {
|
|
980
988
|
@apply border-b border-slate-800/60 bg-slate-950/60 backdrop-blur-xl;
|
|
989
|
+
position: relative;
|
|
990
|
+
z-index: 50;
|
|
991
|
+
}
|
|
992
|
+
|
|
993
|
+
.av-navbar__dropdown {
|
|
994
|
+
position: absolute;
|
|
995
|
+
z-index: 60;
|
|
981
996
|
}
|
|
982
997
|
|
|
983
998
|
.av-navbar-inner {
|