File tree 5 files changed +20
-6
lines changed
5 files changed +20
-6
lines changed Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ function App() {
81
81
</ HeaderGlobalBar >
82
82
</ Header >
83
83
84
- < Content id = "main-content" style = { { background : "#262626" , padding : 0 } } >
84
+ < Content id = "main-content" >
85
85
< Outlet />
86
86
</ Content >
87
87
</ >
Original file line number Diff line number Diff line change @@ -455,7 +455,7 @@ export const LLMChatPage: React.FC = () => {
455
455
< Tab > Chat</ Tab >
456
456
</ TabList >
457
457
< TabPanels >
458
- < TabPanel style = { { background : "#161616" } } >
458
+ < TabPanel className = "tabbg" >
459
459
< Grid fullWidth >
460
460
< Column sm = { 4 } md = { 8 } lg = { 8 } >
461
461
< Tile style = { { marginBottom : "1rem" , padding : "1rem" } } >
@@ -534,7 +534,7 @@ export const LLMChatPage: React.FC = () => {
534
534
</ Column >
535
535
</ Grid >
536
536
</ TabPanel >
537
- < TabPanel style = { { background : "#161616" } } >
537
+ < TabPanel className = "tabbg" >
538
538
< Tile style = { { marginBottom : "1rem" , padding : "1rem" } } >
539
539
< Stack gap = { 7 } >
540
540
{ isLoadingTools && < p > Loading tools...</ p > }
@@ -572,7 +572,7 @@ export const LLMChatPage: React.FC = () => {
572
572
</ Stack >
573
573
</ Tile >
574
574
</ TabPanel >
575
- < TabPanel style = { { background : "#161616" } } >
575
+ < TabPanel className = "tabbg" >
576
576
< Grid fullWidth >
577
577
< Column sm = { 4 } md = { 8 } lg = { 5 } >
578
578
< Tile style = { { marginBottom : "1rem" , padding : "1rem" } } >
Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ export const ResourcesPage: React.FC = () => {
139
139
Resources are a fundamental primitive in MCP that allow servers to
140
140
expose data and content to LLM clients
141
141
</ p >
142
- < div style = { { background : "#161616" , paddingTop : "2rem" } } >
142
+ < div id = "page-content" >
143
143
{ resourcesList }
144
144
</ div >
145
145
{ isAddModalOpen && (
Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ export const ToolsPage: React.FC = () => {
98
98
by utilizing these tools. Each tool is uniquely identified by a name and
99
99
defined with an input schema outlining the expected parameters.
100
100
</ p >
101
- < div style = { { background : "#161616" , paddingTop : "2rem" } } >
101
+ < div id = "page-content" >
102
102
{ fetchedData && (
103
103
< ToolsTable
104
104
fetchedData = { fetchedData }
Original file line number Diff line number Diff line change @@ -29,3 +29,17 @@ body {
29
29
background : theme .$background ;
30
30
color : theme .$text-primary ;
31
31
}
32
+
33
+ #main-content {
34
+ background : theme .$layer-01 ;
35
+ padding : 0 ;
36
+ }
37
+
38
+ #page-content {
39
+ background : theme .$background ;
40
+ padding-top : 2rem ;
41
+ }
42
+
43
+ .tabbg {
44
+ background : theme .$background ;
45
+ }
You can’t perform that action at this time.
0 commit comments