Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions src/containers/Tenant/Diagnostics/Diagnostics.scss
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,12 @@
flex-grow: 1;

width: 100%;
height: 100%;
margin: var(--g-spacing-4) var(--g-spacing-5) 0 var(--g-spacing-5);

// Margin is not counted in height
// thats why we need to subtract it.
height: calc(100% - var(--g-spacing-4));
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

let move it to variable like --diagnostics-margin-top: var(--g-spacing-4)

margin-top: var(--g-spacing-4);
padding: 0 var(--g-spacing-5);

.ydb-table-with-controls-layout {
&__controls {
Expand Down