Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
7 changes: 6 additions & 1 deletion src/containers/Clusters/Clusters.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,16 @@
overflow: auto;
gap: var(--g-spacing-4);

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

@include mixins.body-2-typography();
@include mixins.flex-container();

&__title-wrapper,
&__controls-wrapper {
padding-right: var(--g-spacing-5);
}

&__autorefresh {
margin-left: auto;
}
Expand Down
4 changes: 2 additions & 2 deletions src/containers/Clusters/Clusters.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export function Clusters() {

const renderPageTitle = () => {
return (
<Flex justifyContent="space-between">
<Flex justifyContent="space-between" className={b('title-wrapper')}>
<Flex gap={2}>
<Text variant="header-1">{i18n('page_title')}</Text>
<Text variant="header-1" color="secondary">
Expand All @@ -148,7 +148,7 @@ export function Clusters() {

{renderPageTitle()}

<Flex>
<Flex className={b('controls-wrapper')}>
<div className={b('control', {wide: true})}>
<Search
placeholder={i18n('controls_search-placeholder')}
Expand Down
Loading