@botfabrik/engine-webclient 4.117.2 → 4.118.0

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/README.md CHANGED
@@ -394,9 +394,16 @@ Favicons können z.B. mittels https://realfavicongenerator.net/ generiert werden
394
394
  --brand-secondary-color: white;
395
395
  --danger-color: #cd2147;
396
396
 
397
- /* FAB */
398
- --fab-size: 6em;
399
- --fab-size-mobile: var(--fab-size, 5em);
397
+ /* FAB – Desktop (Priorität: --fab-width/height > --fab-size) */
398
+ --fab-size: 6em; /* Shorthand: gilt für width und height */
399
+ --fab-width: 6em; /* Überschreibt --fab-size nur für die Breite */
400
+ --fab-height: 6em; /* Überschreibt --fab-size nur für die Höhe */
401
+
402
+ /* FAB – Mobile (Priorität: --fab-width/height-mobile > --fab-width/height > --fab-size-mobile > --fab-size) */
403
+ --fab-size-mobile: 5em; /* Shorthand: gilt für width-mobile und height-mobile */
404
+ --fab-width-mobile: 5em; /* Überschreibt --fab-size-mobile nur für die Breite */
405
+ --fab-height-mobile: 5em; /* Überschreibt --fab-size-mobile nur für die Höhe */
406
+
400
407
  --fab-top: auto;
401
408
  --fab-top-mobile: var(--fab-top, auto);
402
409
  --fab-right: 1.5em;