// ============================================ // Antarès UI Library - Embedded Stylesheet (Vendors + Typography) // ============================================ // -------------------------------------------- // 1. ABSTRACTS // Variables, mixins, functions (no direct CSS output) // -------------------------------------------- @use "abstracts/colors"; @use "abstracts/variables" as *; // -------------------------------------------- // 2. VENDORS // Third-party library overrides // -------------------------------------------- @use "vendors/bootstrap"; @use "vendors/jquery-legacy"; @use "vendors/openLayers"; @use "vendors/legacy"; // -------------------------------------------- // 3. BASE // Typography // -------------------------------------------- @use "base/typography"; // -------------------------------------------- // 4. UTILITIES // Helper classes and utilities // -------------------------------------------- @use "utilities/helpers"; // -------------------------------------------- // 5. EMBEDDED SPECIFIC // Styles for embedded/popup mode // -------------------------------------------- html { overflow: hidden; } body { margin: 0; box-sizing: border-box; } *, *::before, *::after { box-sizing: inherit; }