diff --git a/components/dashboard/src/components/CodeText.tsx b/components/dashboard/src/components/CodeText.tsx deleted file mode 100644 index 77fb1b7cd899b1..00000000000000 --- a/components/dashboard/src/components/CodeText.tsx +++ /dev/null @@ -1,13 +0,0 @@ -/** - * Copyright (c) 2021 Gitpod GmbH. All rights reserved. - * Licensed under the GNU Affero General Public License (AGPL). - * See License-AGPL.txt in the project root for license information. - */ - -export default function CodeText(p: { children?: React.ReactNode }) { - return ( - - {p.children} - - ); -} diff --git a/components/dashboard/src/index.css b/components/dashboard/src/index.css index cc0b5ed553ca24..beb78ac0caac9c 100644 --- a/components/dashboard/src/index.css +++ b/components/dashboard/src/index.css @@ -77,6 +77,10 @@ @apply text-blue-500 hover:text-blue-600 dark:text-blue-400 dark:hover:text-blue-500; } + code { + @apply bg-gray-100 dark:bg-gray-700 px-1.5 py-0.5 rounded-md text-sm font-mono font-medium; + } + textarea, input[type="text"], input[type="tel"], diff --git a/components/dashboard/src/settings/EnvironmentVariables.tsx b/components/dashboard/src/settings/EnvironmentVariables.tsx index eb9b7ef7389435..b52e33e3feba1a 100644 --- a/components/dashboard/src/settings/EnvironmentVariables.tsx +++ b/components/dashboard/src/settings/EnvironmentVariables.tsx @@ -10,7 +10,6 @@ import ConfirmationModal from "../components/ConfirmationModal"; import { Item, ItemField, ItemFieldContextMenu, ItemsList } from "../components/ItemsList"; import Modal from "../components/Modal"; import { getGitpodService } from "../service/service"; -import CodeText from "../components/CodeText"; import { PageWithSettingsSubMenu } from "./PageWithSettingsSubMenu"; interface EnvVarModalProps { @@ -95,8 +94,8 @@ function AddEnvVarModal(p: EnvVarModalProps) {
- You can pass a variable for a specific project or use wildcard character (
- */*
) to
+ make it available in more projects.
The following information will be used to set up Git configuration. You can override Git author name and
- email per project by using the default environment variables GIT_AUTHOR_NAME
,{" "}
+ GIT_COMMITTER_NAME
, GIT_AUTHOR_EMAIL
and GIT_COMMITTER_EMAIL
.
Permission to access private repositories has been granted. If you are a member of{" "}
- {owner}
, please try to request access for Gitpod.