Skip to content

Commit

Permalink
Fix spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
DaryaLari committed Dec 26, 2024
1 parent e915b0a commit c5d050a
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';

import {Dialog, Text} from '@gravity-ui/uikit';
import {Dialog, Text, spacing} from '@gravity-ui/uikit';
import {i18n} from 'i18n';
import DialogManager from 'ui/components/DialogManager/DialogManager';

Expand All @@ -22,9 +22,9 @@ export function VersionDialog({releaseVersion, open, onClose}: VersionDialogProp
<Dialog open={open} onClose={onClose} size="s">
<Dialog.Header caption={i18n('component.aside-header.view', 'label_about')} />
<Dialog.Body>
<Text variant="subheader-1">
<Text variant="subheader-1" className={spacing({mr: 2})}>
{i18n('component.aside-header.view', 'label_app-version')}:
</Text>{' '}
</Text>
{releaseVersion}
</Dialog.Body>
<Dialog.Footer />
Expand Down

0 comments on commit c5d050a

Please sign in to comment.