@kumori/aurora-wui-components 0.0.264-dev4114.30 → 0.0.264-dev4114.31

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/dist/index.js CHANGED
@@ -11839,7 +11839,7 @@ var AxebowObservabilityContainer = class AxebowObservabilityContainer extends Li
11839
11839
  return html`
11840
11840
  <div class="flex-2 h-full px-4 py-8 rounded-lg flex flex-col gap-4 bg-white">
11841
11841
  <div class="flex justify-between items-center">
11842
- <h1 class="font-bold">${this.logsTitle}</h1>
11842
+ <h1 class="m-0 text-base uppercase font-semibold text-(--axebow-gray)">${this.logsTitle}</h1>
11843
11843
  <div class="flex items-center gap-4">
11844
11844
  ${this._renderToggle(this.autoScrollLabel, this.followLogs, this.autoScrollOnLabel, this.autoScrollOffLabel, (checked) => this._dispatch("follow-logs-change", { checked }))}
11845
11845
  <div class="h-full w-0.25 bg-(--axebow-gray)"></div>
@@ -11868,7 +11868,7 @@ var AxebowObservabilityContainer = class AxebowObservabilityContainer extends Li
11868
11868
  id="${this.logsIframeId}"
11869
11869
  allow="storage-access"
11870
11870
  sandbox="${"allow-same-origin allow-scripts"}"
11871
- class="w-full h-screen"
11871
+ class="w-full h-screen p-4 box-border"
11872
11872
  src="${this.logsUrl}"
11873
11873
  ></iframe>
11874
11874
  </div>
@@ -11891,13 +11891,13 @@ var AxebowObservabilityContainer = class AxebowObservabilityContainer extends Li
11891
11891
  return html`
11892
11892
  <div class="flex-2 h-full px-4 py-8 rounded-lg flex flex-col gap-4 bg-white">
11893
11893
  <div class="flex justify-between items-center">
11894
- <h1 class="font-bold">${this.terminalTitle}</h1>
11894
+ <h1 class="m-0 text-base uppercase font-semibold text-(--axebow-gray)">${this.terminalTitle}</h1>
11895
11895
  </div>
11896
11896
  <iframe
11897
11897
  id="${this.terminalIframeId}"
11898
11898
  allow="storage-access"
11899
11899
  sandbox="${"allow-same-origin allow-scripts"}"
11900
- class="w-full h-screen"
11900
+ class="w-full h-screen p-4 box-border"
11901
11901
  src="${this.terminalUrl}"
11902
11902
  ></iframe>
11903
11903
  </div>