diff --git a/.changeset/bright-houses-refuse.md b/.changeset/bright-houses-refuse.md new file mode 100644 index 0000000000..bbdceee6fe --- /dev/null +++ b/.changeset/bright-houses-refuse.md @@ -0,0 +1,4 @@ +--- +'@finos/legend-application-studio': patch +'@finos/legend-art': patch +--- diff --git a/packages/legend-application-studio/src/components/workspace-setup/WorkspaceSetup.tsx b/packages/legend-application-studio/src/components/workspace-setup/WorkspaceSetup.tsx index a78ad24164..f1b79996af 100644 --- a/packages/legend-application-studio/src/components/workspace-setup/WorkspaceSetup.tsx +++ b/packages/legend-application-studio/src/components/workspace-setup/WorkspaceSetup.tsx @@ -32,8 +32,8 @@ import { LongArrowRightIcon, DividerWithText, SearchIcon, - FileImportIcon, BaseCard, + OpenIcon, } from '@finos/legend-art'; import { LEGEND_STUDIO_TEST_ID } from '../../__lib__/LegendStudioTesting.js'; import { @@ -108,7 +108,7 @@ export const ShowcaseCard: React.FC<{ hideDocumentation?: boolean }> = ( title: 'Showcase explorer', content: (
- +
), action: () => openShowcaseManager(applicationStore), @@ -145,7 +145,7 @@ export const DocumentationCard: React.FC = () => { title: 'Review documentation', content: (
- +
), action: () => { @@ -180,7 +180,7 @@ export const ProductionCard: React.FC = () => { title: productionDocument.text, content: (
- +
), action: () => { @@ -216,7 +216,7 @@ export const SandboxCard: React.FC = () => { title: sandboxDocument.text, content: (
- +
), action: () => { @@ -254,7 +254,7 @@ export const RuleEngagementCard: React.FC = () => { title: ruleEngagementDocument.text, content: (
- +
), action: () => { diff --git a/packages/legend-application-studio/style/components/_workspace-setup.scss b/packages/legend-application-studio/style/components/_workspace-setup.scss index dcc5a88309..ced008ef07 100644 --- a/packages/legend-application-studio/style/components/_workspace-setup.scss +++ b/packages/legend-application-studio/style/components/_workspace-setup.scss @@ -245,6 +245,7 @@ &__content { font-size: min(1.5vh, 1.5vw); + line-height: 2vh; } &__action__icon { @@ -252,7 +253,7 @@ align-items: center; svg { - font-size: min(1.25vw, 1.25vh); + font-size: min(1.5vw, 1.5vh); } } } @@ -300,7 +301,7 @@ @include flexCenter; height: 100%; - width: 2vh; + width: 4vh; background: var(--color-dark-grey-85); border-radius: 0.2rem 0 0 0.2rem; diff --git a/packages/legend-art/src/icon/Icon.ts b/packages/legend-art/src/icon/Icon.ts index 0750ad6924..26de71e8cb 100644 --- a/packages/legend-art/src/icon/Icon.ts +++ b/packages/legend-art/src/icon/Icon.ts @@ -319,3 +319,6 @@ export const HomeIcon = HI.HiHome; const LU = ReactIcons.LU; export const WorkflowIcon = LU.LuWorkflow; + +const IO5 = ReactIcons.IO5; +export const OpenIcon = IO5.IoOpenOutline;