@pepperi-addons/ngx-lib 0.3.15-beta.10 → 0.3.15-beta.11

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": "@pepperi-addons/ngx-lib",
3
- "version": "0.3.15-beta.10",
3
+ "version": "0.3.15-beta.11",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": ">= 12.0.0",
6
6
  "@angular/cdk": ">= 12.0.0",
@@ -306,7 +306,7 @@
306
306
  // ******************************************************************************
307
307
  // General state declerations
308
308
  // ******************************************************************************
309
- @mixin focus($add-important: false, $focus-color: null, $focus-size: variables.$spacing-xs) {
309
+ @mixin focus($add-important: false, $focus-color: null, $focus-size: variables.$focus-size) {
310
310
  @if ($focus-color == null) {
311
311
  $focus-color: functions.get-pep-color(color-text, color-link-focus);
312
312
  }
@@ -59,7 +59,6 @@ $font-weight-normal: var(--pep-font-weight-normal, 400);
59
59
  $font-weight-bold: var(--pep-font-weight-bold, 600);
60
60
  $font-weight-bolder: var(--pep-font-weight-bolder, 800);
61
61
 
62
-
63
62
  // Round corners
64
63
  // -----------------------------------------------------------------------------
65
64
  $border-radius-sm: var(--pep-border-radius-sm, 0.125rem);
@@ -84,6 +83,10 @@ $spacing-7xl: var(--pep-spacing-7xl, 6rem); // 96px
84
83
  $spacing-8xl: var(--pep-spacing-8xl, 8rem); // 128px
85
84
  $spacing-9xl: var(--pep-spacing-9xl, 16rem); // 256px
86
85
 
86
+ // Focus size
87
+ // -----------------------------------------------------------------------------
88
+ $focus-size: $spacing-xs;
89
+
87
90
  // *****************************************************************************************
88
91
  // Layout - General
89
92
  // *****************************************************************************************
@@ -218,6 +218,7 @@
218
218
  // Form view
219
219
  // ------------------------
220
220
  .form-view {
221
+ padding: variables.$content-margin variables.$spacing-xs;
221
222
  margin-top: variables.$content-margin;
222
223
  margin-bottom: variables.$content-margin;
223
224
  margin-inline: 0.25rem;