@ansiversa/components 0.0.65 → 0.0.67
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 +14 -0
package/package.json
CHANGED
package/src/styles/global.css
CHANGED
|
@@ -780,6 +780,20 @@
|
|
|
780
780
|
overflow-y: auto;
|
|
781
781
|
}
|
|
782
782
|
|
|
783
|
+
/* Drawer: always pin panel to the RIGHT (some components add auto-margins) */
|
|
784
|
+
.av-drawer-overlay > * {
|
|
785
|
+
margin-left: auto !important;
|
|
786
|
+
margin-right: 0 !important;
|
|
787
|
+
}
|
|
788
|
+
|
|
789
|
+
/* Ansiversa standard: only ONE overlay source */
|
|
790
|
+
.av-drawer-overlay .av-drawer__backdrop,
|
|
791
|
+
.av-drawer-overlay .av-drawer-backdrop,
|
|
792
|
+
.av-drawer-overlay .av-drawer__overlay,
|
|
793
|
+
.av-drawer-overlay [data-av-drawer-backdrop] {
|
|
794
|
+
display: none !important;
|
|
795
|
+
}
|
|
796
|
+
|
|
783
797
|
/* TABLE */
|
|
784
798
|
.av-table {
|
|
785
799
|
border: 1px solid var(--ans-border);
|