jclib-ui 1.0.123 → 1.0.124

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.
@@ -5240,6 +5240,8 @@ function IconUserGear(props) {
5240
5240
  );
5241
5241
  }
5242
5242
  const PanelHeader = styled.div`
5243
+ --pn-internal-radius: calc(var(--pn-border-radius) - 1px);
5244
+
5243
5245
  display: flex;
5244
5246
  justify-content: space-between;
5245
5247
  align-items: center;
@@ -5248,7 +5250,7 @@ const PanelHeader = styled.div`
5248
5250
  color: var(--pn-color-font);
5249
5251
  background-color: var(--pn-color);
5250
5252
  padding: var(--pn-padding);
5251
- border-radius: 5px 5px 0 0;
5253
+ border-radius: var(--pn-internal-radius) var(--pn-internal-radius) 0 0;
5252
5254
  min-height: 39px;
5253
5255
 
5254
5256
  .pn-title {