From c5edf81631ef0e7b2279572e4fb61d022c5d5d72 Mon Sep 17 00:00:00 2001 From: Dogus Atasoy Date: Wed, 4 Dec 2024 17:00:36 +0100 Subject: [PATCH 1/5] updated footer text size --- src/styles/components/chat/_chat-prompt-wrapper.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/styles/components/chat/_chat-prompt-wrapper.scss b/src/styles/components/chat/_chat-prompt-wrapper.scss index a68020ac..60f01d1c 100644 --- a/src/styles/components/chat/_chat-prompt-wrapper.scss +++ b/src/styles/components/chat/_chat-prompt-wrapper.scss @@ -354,7 +354,8 @@ &, & * { - font-size: var(--mynah-font-size-xsmall); + font-size: var(--mynah-font-size-xxsmall) !important; + line-height: var(--mynah-font-size-xxsmall) !important; } &:empty { From 91d32c22771536489f47ce53ea4ddb6e7c8f9e96 Mon Sep 17 00:00:00 2001 From: Dogus Atasoy Date: Wed, 4 Dec 2024 17:09:25 +0100 Subject: [PATCH 2/5] updated font size --- src/styles/components/chat/_chat-prompt-wrapper.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/styles/components/chat/_chat-prompt-wrapper.scss b/src/styles/components/chat/_chat-prompt-wrapper.scss index 60f01d1c..d829d321 100644 --- a/src/styles/components/chat/_chat-prompt-wrapper.scss +++ b/src/styles/components/chat/_chat-prompt-wrapper.scss @@ -354,8 +354,8 @@ &, & * { - font-size: var(--mynah-font-size-xxsmall) !important; - line-height: var(--mynah-font-size-xxsmall) !important; + font-size: var(--mynah-font-size-xsmall) !important; + line-height: var(--mynah-font-size-xsmall) !important; } &:empty { From ed7ef579d68a2d00e34cdcaf90b55c5506e34925 Mon Sep 17 00:00:00 2001 From: Dogus Atasoy Date: Thu, 5 Dec 2024 11:37:40 +0100 Subject: [PATCH 3/5] updated general lineheight --- src/styles/_variables.scss | 2 +- src/styles/components/chat/_chat-prompt-wrapper.scss | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/styles/_variables.scss b/src/styles/_variables.scss index a4a338fb..0cf2e766 100644 --- a/src/styles/_variables.scss +++ b/src/styles/_variables.scss @@ -127,7 +127,7 @@ --mynah-font-size-large: 1.25rem; --mynah-font-size-xlarge: 1.4rem; --mynah-font-size-xxlarge: 1.6rem; - --mynah-line-height: 1.5rem; + --mynah-line-height: 1.25rem; --mynah-syntax-code-line-height: 1.5rem; --mynah-syntax-code-font-size: var(--vscode-editor-font-size, var(--mynah-font-size-medium)); diff --git a/src/styles/components/chat/_chat-prompt-wrapper.scss b/src/styles/components/chat/_chat-prompt-wrapper.scss index d829d321..d43a63f6 100644 --- a/src/styles/components/chat/_chat-prompt-wrapper.scss +++ b/src/styles/components/chat/_chat-prompt-wrapper.scss @@ -355,7 +355,6 @@ &, & * { font-size: var(--mynah-font-size-xsmall) !important; - line-height: var(--mynah-font-size-xsmall) !important; } &:empty { From 142008fde39d3fbf8719ec31bf5c1325df7d6b0c Mon Sep 17 00:00:00 2001 From: Dogus Atasoy Date: Thu, 5 Dec 2024 11:40:36 +0100 Subject: [PATCH 4/5] updated version to v4.21.1 --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index c8749c33..4236a81c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@aws/mynah-ui", - "version": "4.21.0", + "version": "4.21.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@aws/mynah-ui", - "version": "4.21.0", + "version": "4.21.1", "hasInstallScript": true, "license": "Apache License 2.0", "dependencies": { diff --git a/package.json b/package.json index a3ebc04a..c9e2841c 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@aws/mynah-ui", "displayName": "AWS Mynah UI", - "version": "4.21.0", + "version": "4.21.1", "description": "AWS Toolkit VSCode and Intellij IDE Extension Mynah UI", "publisher": "Amazon Web Services", "license": "Apache License 2.0", From b569d5335c463045465b2bac0c412b052670c4ab Mon Sep 17 00:00:00 2001 From: Dogus Atasoy Date: Thu, 5 Dec 2024 11:59:31 +0100 Subject: [PATCH 5/5] removing tests to push (since tests are pretty big and takes time on local) --- .husky/pre-push | 1 - 1 file changed, 1 deletion(-) diff --git a/.husky/pre-push b/.husky/pre-push index 425ddc89..5ec09714 100644 --- a/.husky/pre-push +++ b/.husky/pre-push @@ -1,3 +1,2 @@ npm run lint npm run format:check -npm run tests:e2e