@qoretechnologies/reqraft 0.10.13 → 0.10.15

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.
@@ -47,14 +47,13 @@ export const StyledCompactPanel = styled(ReqorePanel)<{
47
47
  $nested?: boolean;
48
48
  }>`
49
49
  > .reqore-panel-title {
50
- background: ${({ $headerBg }) => $headerBg};
51
50
  /* The blur + translateZ exist only to make the STICKY top-level toolbar ghost
52
51
  content beneath it; a nested sub-form's header isn't sticky, so skip them
53
52
  (and the stacking context translateZ creates). */
54
53
  ${({ $nested }) =>
55
- $nested ?
56
- ''
57
- : 'backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); transform: translateZ(0);'}
54
+ $nested ? '' : (
55
+ 'backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); transform: translateZ(0);'
56
+ )}
58
57
  padding-top: ${GAP_FROM_SIZE[HEADER_GAP]}px;
59
58
  padding-bottom: ${GAP_FROM_SIZE[HEADER_GAP]}px;
60
59
  }
@@ -625,5 +624,4 @@ export const StyledGroupBody = styled.div<{
625
624
  padding-top: 0;
626
625
  padding-bottom: 0;
627
626
  }
628
-
629
627
  `;