Update automation run log detail panel padding
This commit is contained in:
parent
c469dbe0ac
commit
45f166b3f4
|
@ -23,7 +23,7 @@
|
||||||
<ActionButton noPadding size="S" icon="Close" quiet on:click={close} />
|
<ActionButton noPadding size="S" icon="Close" quiet on:click={close} />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<Layout paddingX="XL" gap="S">
|
<Layout paddingY="XL" paddingX="XL" gap="S">
|
||||||
<div class="icon">
|
<div class="icon">
|
||||||
<Icon name="Clock" />
|
<Icon name="Clock" />
|
||||||
<DateTimeRenderer value={history.createdAt} />
|
<DateTimeRenderer value={history.createdAt} />
|
||||||
|
@ -71,7 +71,6 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.bottom {
|
.bottom {
|
||||||
margin-top: var(--spacing-m);
|
|
||||||
border-top: var(--border-light);
|
border-top: var(--border-light);
|
||||||
padding-top: calc(var(--spacing-xl) * 2);
|
padding-top: calc(var(--spacing-xl) * 2);
|
||||||
padding-bottom: calc(var(--spacing-xl) * 2);
|
padding-bottom: calc(var(--spacing-xl) * 2);
|
||||||
|
|
|
@ -157,6 +157,7 @@
|
||||||
data={runHistory}
|
data={runHistory}
|
||||||
{customRenderers}
|
{customRenderers}
|
||||||
placeholderText="No history found"
|
placeholderText="No history found"
|
||||||
|
border={false}
|
||||||
/>
|
/>
|
||||||
<div class="pagination">
|
<div class="pagination">
|
||||||
<Pagination
|
<Pagination
|
||||||
|
@ -186,7 +187,8 @@
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 1fr;
|
grid-template-columns: 1fr;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
padding: var(--spacing-xl) var(--spectrum-alias-grid-gutter-large);
|
padding: var(--spectrum-alias-grid-gutter-medium)
|
||||||
|
var(--spectrum-alias-grid-gutter-large);
|
||||||
}
|
}
|
||||||
|
|
||||||
.search {
|
.search {
|
||||||
|
@ -209,7 +211,7 @@
|
||||||
|
|
||||||
.panel {
|
.panel {
|
||||||
display: none;
|
display: none;
|
||||||
margin-top: calc(-1 * var(--spacing-xl));
|
margin-top: calc(-1 * var(--spectrum-alias-grid-gutter-medium));
|
||||||
}
|
}
|
||||||
|
|
||||||
.panelShow {
|
.panelShow {
|
||||||
|
|
Loading…
Reference in New Issue