From 028cdc46ec1b5305d7cde63fa5bc29bd59e2172c Mon Sep 17 00:00:00 2001 From: Alexander Guschin <1aguschin@gmail.com> Date: Thu, 31 Aug 2023 13:28:52 +0200 Subject: [PATCH 1/3] Remove MLEM mentions --- .../components/LayoutFooter/index.tsx | 13 ------------- .../components/LayoutHeader/index.tsx | 8 -------- src/components/molecules/HamburgerMenu/index.tsx | 8 -------- .../molecules/HamburgerMenu/styles.module.css | 4 ---- 4 files changed, 33 deletions(-) diff --git a/src/@dvcorg/gatsby-theme-iterative/components/LayoutFooter/index.tsx b/src/@dvcorg/gatsby-theme-iterative/components/LayoutFooter/index.tsx index 22ad5406..24375e4f 100644 --- a/src/@dvcorg/gatsby-theme-iterative/components/LayoutFooter/index.tsx +++ b/src/@dvcorg/gatsby-theme-iterative/components/LayoutFooter/index.tsx @@ -13,7 +13,6 @@ import { ReactComponent as IterativeIcon } from '@media/icons/iterative.svg' import dvcIcon from '@media/icons/dvc.svg' import cmlIcon from '@media/icons/cml.svg' import studioIcon from '@media/icons/studio.svg' -import mlemIcon from '@media/icons/mlem.svg' interface ISocialLinkPopupProps { url: string @@ -99,18 +98,6 @@ const footerLists: Array = [ ), url: 'https://studio.iterative.ai/' }, - { - text: 'MLEM', - icon: ( - - ), - url: 'https://mlem.ai/' - }, { text: 'VS Code Extension', icon: , diff --git a/src/@dvcorg/gatsby-theme-iterative/components/LayoutHeader/index.tsx b/src/@dvcorg/gatsby-theme-iterative/components/LayoutHeader/index.tsx index 05a701c9..cb9ee604 100644 --- a/src/@dvcorg/gatsby-theme-iterative/components/LayoutHeader/index.tsx +++ b/src/@dvcorg/gatsby-theme-iterative/components/LayoutHeader/index.tsx @@ -12,7 +12,6 @@ import { ReactComponent as DownIcon } from '@media/icons/down.svg' import { ReactComponent as CmlIcon } from '@media/icons/cml.svg' import { ReactComponent as DvcIcon } from '@media/icons/dvc.svg' import { ReactComponent as StudioIcon } from '@media/icons/studio.svg' -import { ReactComponent as MlemIcon } from '@media/icons/mlem.svg' import { ReactComponent as ExternalLinkIcon } from '@media/icons/external-link.svg' import { ReactComponent as VsCodeIcon } from '@media/icons/vscode.svg' @@ -94,13 +93,6 @@ const otherToolsItems: Array = [ icon: , description: 'Open-source CI/CD for ML projects', href: '/' - }, - { - title: 'MLEM', - icon: , - description: - 'Open-source model registry and deployment tool for ML projects', - href: 'https://mlem.ai' } ] diff --git a/src/components/molecules/HamburgerMenu/index.tsx b/src/components/molecules/HamburgerMenu/index.tsx index 95d7489f..82de89e6 100644 --- a/src/components/molecules/HamburgerMenu/index.tsx +++ b/src/components/molecules/HamburgerMenu/index.tsx @@ -183,14 +183,6 @@ export const HamburgerMenu: React.FC< CML -
  • - -
    - MLEM - -
  • Date: Fri, 1 Sep 2023 17:11:37 +0200 Subject: [PATCH 2/3] Restyled by prettier (#489) Co-authored-by: Restyled.io --- .../molecules/HamburgerMenu/styles.module.css | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/src/components/molecules/HamburgerMenu/styles.module.css b/src/components/molecules/HamburgerMenu/styles.module.css index 3d34a317..236a2b1d 100644 --- a/src/components/molecules/HamburgerMenu/styles.module.css +++ b/src/components/molecules/HamburgerMenu/styles.module.css @@ -8,7 +8,9 @@ position: fixed; z-index: 11; transform: translateX(100%); - transition: transform 0.4s ease, visibility 0.4s; + transition: + transform 0.4s ease, + visibility 0.4s; will-change: transform; left: 0; right: 0; @@ -50,7 +52,11 @@ justify-content: center; background: transparent; outline: none; - transition: 0.5s all, opacity 0.2s, outline-offset 0s, outline-width 0s, + transition: + 0.5s all, + opacity 0.2s, + outline-offset 0s, + outline-width 0s, outline-color 0s; &:hover { @@ -223,7 +229,9 @@ a.sectionHeading { text-align: center; text-decoration: none; color: #24292e; - transition: background-color 0.2s ease-in, opacity 0.2s ease-in; + transition: + background-color 0.2s ease-in, + opacity 0.2s ease-in; &:hover { cursor: pointer; From 97085ac4f70f64255224338d3ebba935af49839a Mon Sep 17 00:00:00 2001 From: Alexander Guschin <1aguschin@gmail.com> Date: Fri, 1 Sep 2023 17:21:26 +0200 Subject: [PATCH 3/3] Revert "Restyled by prettier (#489)" (#490) This reverts commit 66f06b21ffe267fed581eef6d4e53b40ebcadc83. --- .../molecules/HamburgerMenu/styles.module.css | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/src/components/molecules/HamburgerMenu/styles.module.css b/src/components/molecules/HamburgerMenu/styles.module.css index 236a2b1d..3d34a317 100644 --- a/src/components/molecules/HamburgerMenu/styles.module.css +++ b/src/components/molecules/HamburgerMenu/styles.module.css @@ -8,9 +8,7 @@ position: fixed; z-index: 11; transform: translateX(100%); - transition: - transform 0.4s ease, - visibility 0.4s; + transition: transform 0.4s ease, visibility 0.4s; will-change: transform; left: 0; right: 0; @@ -52,11 +50,7 @@ justify-content: center; background: transparent; outline: none; - transition: - 0.5s all, - opacity 0.2s, - outline-offset 0s, - outline-width 0s, + transition: 0.5s all, opacity 0.2s, outline-offset 0s, outline-width 0s, outline-color 0s; &:hover { @@ -229,9 +223,7 @@ a.sectionHeading { text-align: center; text-decoration: none; color: #24292e; - transition: - background-color 0.2s ease-in, - opacity 0.2s ease-in; + transition: background-color 0.2s ease-in, opacity 0.2s ease-in; &:hover { cursor: pointer;