Skip to content

Commit

Permalink
included a breaking point to fix ui only where needed on xl screen
Browse files Browse the repository at this point in the history
  • Loading branch information
Barukimang committed Jul 11, 2024
1 parent 744fcbb commit c5b5db9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/containers/settings/versionInfoCard/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export const VersionInfoCard: React.FC<{
<SettingsCard title={t('setting.versionInfo.title')}>
<DescriptionPair>
<Term>{t('setting.versionInfo.labelApp')}</Term>
<FlexibleDefinition className="max-w-60 truncate">
<FlexibleDefinition className="xl:max-w-60 truncate">

Check warning on line 74 in src/containers/settings/versionInfoCard/index.tsx

View workflow job for this annotation

GitHub Actions / build-and-test

Invalid Tailwind CSS classnames order
<Link
label={`Aragon App v${AppVersion}`}
type="primary"
Expand All @@ -82,7 +82,7 @@ export const VersionInfoCard: React.FC<{
</DescriptionPair>
<DescriptionPair>
<Term>{t('setting.versionInfo.labelOs')}</Term>
<FlexibleDefinition className="max-w-60 truncate">
<FlexibleDefinition className="xl:max-w-60 truncate">

Check warning on line 85 in src/containers/settings/versionInfoCard/index.tsx

View workflow job for this annotation

GitHub Actions / build-and-test

Invalid Tailwind CSS classnames order
<Link
label={
!isLoading ? `Aragon OSx v${versions?.join('.')}` : 'Loading...'
Expand All @@ -97,7 +97,7 @@ export const VersionInfoCard: React.FC<{

<DescriptionPair className="border-none">
<Term>{t('setting.versionInfo.labelGovernance')}</Term>
<FlexibleDefinition className="max-w-60 truncate">
<FlexibleDefinition className="xl:max-w-60 truncate">

Check warning on line 100 in src/containers/settings/versionInfoCard/index.tsx

View workflow job for this annotation

GitHub Actions / build-and-test

Invalid Tailwind CSS classnames order
<Link
label={`${pluginName} v${pluginVersion}`}
description={shortenAddress(pluginAddress)}
Expand Down

0 comments on commit c5b5db9

Please sign in to comment.