From 67af0934a515f9b28065fd0988cbd2e1ca48ab01 Mon Sep 17 00:00:00 2001 From: Randy Lau Date: Wed, 10 May 2023 11:44:47 -0700 Subject: [PATCH 1/9] fix intermittent background flash Signed-off-by: Randy Lau --- src/sections/app.style.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/sections/app.style.js b/src/sections/app.style.js index 678013902fe4..7444b749d21e 100644 --- a/src/sections/app.style.js +++ b/src/sections/app.style.js @@ -21,6 +21,11 @@ const GlobalStyle = createGlobalStyle` outline: none; } + #___gatsby { + background: ${(props) => props.theme.body}; + transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); + } + html{ box-sizing: border-box; -ms-overflow-style: scrollbar; From 4d97ae5a3e446ce26ac542ebe209e300fc5701f7 Mon Sep 17 00:00:00 2001 From: Vishrut Aggarwal Date: Thu, 18 May 2023 17:21:51 +0530 Subject: [PATCH 2/9] fix: add word-wrap to terminal text and set max-width Signed-off-by: Vishrut Aggarwal --- src/components/Terminal/Terminal.style.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/components/Terminal/Terminal.style.js b/src/components/Terminal/Terminal.style.js index ac22912fb6d4..e547b8db32b8 100644 --- a/src/components/Terminal/Terminal.style.js +++ b/src/components/Terminal/Terminal.style.js @@ -59,7 +59,6 @@ export const TerminalWrapper = styled.div` background: var(--terminal-body-color); border-radius: 0 0 var(--terminal-radius) var(--terminal-radius); padding: 24px 32px; - @media (min-width: 768px) { height: 525px; } @@ -80,16 +79,16 @@ export const TerminalWrapper = styled.div` width: 0; height: 0; } - + .code-wrapper { - pre { + pre { padding: 0; margin: 0; width: 100%; height: 100%; font-style: normal; font-weight: normal; - font-size: 12px; + font-size: 10px; line-height: 27px; white-space: pre-wrap; color: ${props => props.theme.secondaryColor}; @@ -106,6 +105,9 @@ export const TerminalWrapper = styled.div` color: var(--white); } + wrap-word: normal; + max-width: 17rem; + @media (min-width: 768px){ font-size: 13.5px; line-height: 26px; From 63da40dbb65a71dc440e819b8936ec7687400e44 Mon Sep 17 00:00:00 2001 From: Vishrut Aggarwal Date: Fri, 19 May 2023 09:13:41 +0530 Subject: [PATCH 3/9] fix: reverted the font size to 12px in terminal Signed-off-by: Vishrut Aggarwal --- src/components/Terminal/Terminal.style.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Terminal/Terminal.style.js b/src/components/Terminal/Terminal.style.js index e547b8db32b8..53f36937b818 100644 --- a/src/components/Terminal/Terminal.style.js +++ b/src/components/Terminal/Terminal.style.js @@ -88,7 +88,7 @@ export const TerminalWrapper = styled.div` height: 100%; font-style: normal; font-weight: normal; - font-size: 10px; + font-size: 12px; line-height: 27px; white-space: pre-wrap; color: ${props => props.theme.secondaryColor}; From 9f36bf322f8118a573ab995df4a04e0935652422 Mon Sep 17 00:00:00 2001 From: Vishrut Aggarwal Date: Tue, 23 May 2023 19:56:28 +0530 Subject: [PATCH 4/9] removed rigid values and added max-width on bigger scope Signed-off-by: Vishrut Aggarwal --- src/components/Terminal/Terminal.style.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Terminal/Terminal.style.js b/src/components/Terminal/Terminal.style.js index 53f36937b818..216ee7cf762f 100644 --- a/src/components/Terminal/Terminal.style.js +++ b/src/components/Terminal/Terminal.style.js @@ -16,6 +16,7 @@ export const TerminalWrapper = styled.div` --terminal-body-color: var(--gray-1); width: 837px; + max-width: 90%; .title-bar { display: flex; @@ -106,7 +107,6 @@ export const TerminalWrapper = styled.div` } wrap-word: normal; - max-width: 17rem; @media (min-width: 768px){ font-size: 13.5px; From 46eb9034851db9c150fd935f5098869e74e24e14 Mon Sep 17 00:00:00 2001 From: 8rxn Date: Tue, 23 May 2023 20:00:43 +0530 Subject: [PATCH 5/9] Add Full Sized Image of books in Navigation Signed-off-by: 8rxn --- .../service-mesh-books/service-mesh-patterns/index.mdx | 2 +- .../index.mdx | 2 +- src/sections/General/Navigation/index.js | 7 +++---- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/src/collections/service-mesh-books/service-mesh-patterns/index.mdx b/src/collections/service-mesh-books/service-mesh-patterns/index.mdx index 6109ee6704fb..336fa8d07d93 100644 --- a/src/collections/service-mesh-books/service-mesh-patterns/index.mdx +++ b/src/collections/service-mesh-books/service-mesh-patterns/index.mdx @@ -2,7 +2,7 @@ title: "Service Mesh Patterns" date: 2020-04-08 21:15:05 +0000 cover: ./service-mesh-patterns.png -thumbnail: ./service-mesh-patterns-small.png +thumbnail: ./service-mesh-patterns.png author: Lee Calcote and Nic Jackson abstract: "Patterns, recipes and best practices for deploying and operating service meshes." published: true diff --git a/src/collections/service-mesh-books/the-enterprise-path-to-service-mesh-architectures-2nd-Edition/index.mdx b/src/collections/service-mesh-books/the-enterprise-path-to-service-mesh-architectures-2nd-Edition/index.mdx index 7086140d6ae9..fce17ec64410 100644 --- a/src/collections/service-mesh-books/the-enterprise-path-to-service-mesh-architectures-2nd-Edition/index.mdx +++ b/src/collections/service-mesh-books/the-enterprise-path-to-service-mesh-architectures-2nd-Edition/index.mdx @@ -2,7 +2,7 @@ title: "The Enterprise Path to Service Mesh Architectures (2nd Edition)" date: 2020-10-23 21:15:05 +0000 cover: ./The-Enterprise-path-to-service-mesh-Architectures-2nd-Edition.png -thumbnail: ./The-Enterprise-path-to-service-mesh-Architectures-2nd-Edition-small.png +thumbnail: ./The-Enterprise-path-to-service-mesh-Architectures-2nd-Edition.png author: "Lee Calcote" abstract: "Planning to build a microservice-driven cloud native application or looking to modernize existing application services?" published: true diff --git a/src/sections/General/Navigation/index.js b/src/sections/General/Navigation/index.js index e7c49fbfe622..97248ac74dc5 100644 --- a/src/sections/General/Navigation/index.js +++ b/src/sections/General/Navigation/index.js @@ -33,10 +33,9 @@ const Navigation = () => { thumbnail { childImageSharp { gatsbyImageData( - width: 240 - height: 160 - transformOptions: {cropFocus: CENTER} - layout: FIXED + width: 1050 + height:1360 + layout: CONSTRAINED ) } publicURL From b2a981fc7ca5c841126a6314d25baec6a4371e48 Mon Sep 17 00:00:00 2001 From: Shivam Sood Date: Wed, 24 May 2023 19:22:41 +0530 Subject: [PATCH 6/9] added collaborate page changes Signed-off-by: Shivam Sood --- .../Meshmap/Meshmap-collaborate/meshmap-collaborate-banner.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sections/Meshmap/Meshmap-collaborate/meshmap-collaborate-banner.js b/src/sections/Meshmap/Meshmap-collaborate/meshmap-collaborate-banner.js index 19e47a035607..d63ad955c9c6 100644 --- a/src/sections/Meshmap/Meshmap-collaborate/meshmap-collaborate-banner.js +++ b/src/sections/Meshmap/Meshmap-collaborate/meshmap-collaborate-banner.js @@ -57,7 +57,7 @@ const CollaborationBannerWrapper = styled.div` /* font-size: 4rem; */ position: relative; display: inline-block; - color: ${props => props.theme.primaryColor}; + /* color: ${props => props.theme.primaryColor}; */ transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); /* @media only screen and (min-width: 500px) { @@ -195,7 +195,7 @@ const MeshmapCollaborateBanner = () => {

Collaborate with the team.
Build solutions together

Designer and Visualizer live side-by-side, so all design work, from ideation to operation, can be found in one place.

-
From db28c63e648091cbf32f89d8ff2c7b76fa2174bd Mon Sep 17 00:00:00 2001 From: Shivam Sood Date: Wed, 24 May 2023 19:51:00 +0530 Subject: [PATCH 7/9] playground page changes Signed-off-by: Shivam Sood --- src/sections/Playground/images/playground-feature-2.svg | 7 ++++++- src/sections/Playground/index.js | 1 - src/sections/Playground/playground-features.js | 6 ++++++ 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/src/sections/Playground/images/playground-feature-2.svg b/src/sections/Playground/images/playground-feature-2.svg index 389660b93f36..c9f1924b85b6 100644 --- a/src/sections/Playground/images/playground-feature-2.svg +++ b/src/sections/Playground/images/playground-feature-2.svg @@ -1,4 +1,9 @@ + @@ -898,7 +903,7 @@ - + diff --git a/src/sections/Playground/index.js b/src/sections/Playground/index.js index 9ec66be1c23c..9a2bb39bc32e 100644 --- a/src/sections/Playground/index.js +++ b/src/sections/Playground/index.js @@ -1,5 +1,4 @@ import React from "react"; -import styled from "styled-components"; import Reviews from "../Pricing/review-slider"; import PlaygroundHero from "./playground-hero"; import PlaygroundFeatures from "./playground-features"; diff --git a/src/sections/Playground/playground-features.js b/src/sections/Playground/playground-features.js index 788a3d25b06d..b4ab8965923a 100644 --- a/src/sections/Playground/playground-features.js +++ b/src/sections/Playground/playground-features.js @@ -14,6 +14,12 @@ const PlaygroundFeaturesWrapper = styled.div` align-items: center; margin: 5% 0%; + svg { + .playground-feature-2_svg__text { + fill: ${props => props.theme.whiteToBlack}; + transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); + } + } h1 { margin-bottom: 8px; } From a62acac4a72b4d672200d07ec18b424e9fab0e3d Mon Sep 17 00:00:00 2001 From: Naureen Date: Wed, 24 May 2023 18:31:52 +0100 Subject: [PATCH 8/9] Fix Catalog link Signed-off-by: Naureen --- src/sections/Projects/Project-grid/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sections/Projects/Project-grid/index.js b/src/sections/Projects/Project-grid/index.js index 504231990757..05e0acd07b14 100644 --- a/src/sections/Projects/Project-grid/index.js +++ b/src/sections/Projects/Project-grid/index.js @@ -108,7 +108,7 @@ const ProjectPage = () => {
From 15d8bf5b05826580dd7169d37d76f2852f0eeb89 Mon Sep 17 00:00:00 2001 From: Naureen Date: Wed, 24 May 2023 19:02:23 +0100 Subject: [PATCH 9/9] Fix Catalog link on Home page Signed-off-by: Naureen --- src/sections/Home/Projects-home/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/sections/Home/Projects-home/index.js b/src/sections/Home/Projects-home/index.js index e2bcc50982a1..040f59368089 100644 --- a/src/sections/Home/Projects-home/index.js +++ b/src/sections/Home/Projects-home/index.js @@ -46,7 +46,7 @@ const Projects = () => {
- +

Meshery

Cloud Native Management and Governance

@@ -64,14 +64,14 @@ const Projects = () => {
- +

Nighthawk

Distributed Performance Management for Microservices

- +
{/* */}