Skip to content

Commit 7407e22

Browse files
committed
add monofont to mcp
1 parent e2a675f commit 7407e22

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

src/index.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,4 +103,9 @@ body {
103103
#root {
104104
height: 100%;
105105
background-color: var(--sapBackgroundColor);
106+
}
107+
108+
.mono-font {
109+
font-family: 'Roboto Mono', monospace;
110+
font-weight: bold;
106111
}

src/views/ControlPlanes/ControlPlaneListView.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ObjectPage, ObjectPageTitle } from "@ui5/webcomponents-react";
1+
import { ObjectPage, ObjectPageTitle, Title } from "@ui5/webcomponents-react";
22
import ProjectChooser from "../../components/Projects/ProjectChooser.tsx";
33
import { useParams } from "react-router-dom";
44
import ControlPlaneListAllWorkspaces from "../../components/ControlPlanes/List/ControlPlaneListAllWorkspaces.tsx";
@@ -16,7 +16,7 @@ export default function ControlPlaneListView() {
1616
preserveHeaderStateOnClick={true}
1717
titleArea={
1818
<ObjectPageTitle
19-
header="Your MCPs"
19+
header={<Title>Your <span className="mono-font">ManagedControlPlanes</span></Title>}
2020
subHeader={
2121
<div
2222
style={{

0 commit comments

Comments
 (0)