osi-cards-lib 1.1.1 → 1.1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "osi-cards-lib",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "Standalone OSI Cards library for Angular applications",
5
5
  "keywords": [
6
6
  "angular",
@@ -36,7 +36,6 @@
36
36
  @import 'components/sections/fallback';
37
37
  @import 'components/sections/unified-cards'; /* Must be last to override all section-specific styles */
38
38
  @import 'components/sections/global-enforcement'; /* GLOBAL ENFORCEMENT - MUST BE ABSOLUTELY LAST to enforce all settings */
39
- @import 'components/ai-card-renderer';
40
39
 
41
40
  /* FINAL OVERRIDE - ABSOLUTELY NO BORDERS OR BORDER-LIKE EFFECTS */
42
41
  h1.ai-card-title,
@@ -13,15 +13,19 @@
13
13
 
14
14
  .overview-card {
15
15
  @include card;
16
- display: flex;
17
- flex-direction: column;
18
- align-items: stretch;
19
- min-height: auto;
20
- padding: calc(var(--card-padding) * 0.625) calc(var(--card-padding) * 0.875) !important;
21
- transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
22
- position: relative;
23
- overflow: hidden;
24
- background: var(--card-background);
16
+
17
+ /* Property declarations after mixin (which contains nested rules) must be wrapped in & {} */
18
+ & {
19
+ display: flex;
20
+ flex-direction: column;
21
+ align-items: stretch;
22
+ min-height: auto;
23
+ padding: calc(var(--card-padding) * 0.625) calc(var(--card-padding) * 0.875) !important;
24
+ transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
25
+ position: relative;
26
+ overflow: hidden;
27
+ background: var(--card-background);
28
+ }
25
29
 
26
30
  /* Left accent border */
27
31
  &::before {