diff --git a/projects/components/src/list-view/list-view.component.scss b/projects/components/src/list-view/list-view.component.scss index f55fd0ca5..e52468408 100644 --- a/projects/components/src/list-view/list-view.component.scss +++ b/projects/components/src/list-view/list-view.component.scss @@ -3,7 +3,7 @@ $key-width: 40%; $value-width: 60%; -$margin-left: 12px; +$horizontal-offset: 12px; @mixin grid-view { width: 100%; @@ -34,7 +34,7 @@ $margin-left: 12px; .header-key-label, .header-value-label { @include overline; - margin-left: $margin-left; + padding: 0 $horizontal-offset; width: 100%; } } @@ -51,7 +51,7 @@ $margin-left: 12px; width: 100%; display: flex; align-items: center; - margin-left: $margin-left; + padding: 0 $horizontal-offset; } .key { font-weight: 500; diff --git a/projects/distributed-tracing/src/shared/components/log-events/log-events-table.component.scss b/projects/distributed-tracing/src/shared/components/log-events/log-events-table.component.scss index c44b410dc..4ba2962ed 100644 --- a/projects/distributed-tracing/src/shared/components/log-events/log-events-table.component.scss +++ b/projects/distributed-tracing/src/shared/components/log-events/log-events-table.component.scss @@ -1,7 +1,13 @@ @import 'font'; .log-events-table { - margin-top: 25px; + padding-top: 24px; + width: 100%; + height: 100%; + + ht-table { + max-height: 100%; + } } .content {