diff --git a/web/docs/README.md b/web/docs/README.md
index 1750b5ded..6515b560e 100644
--- a/web/docs/README.md
+++ b/web/docs/README.md
@@ -4,7 +4,7 @@
- Give your page or form a title. Feel free to use Ant Design's `
` component.
- Give your form a description inside of a `` tag.
-- Use some Ant Design `Row` and `Col`'s to layout your forms if you want to spread them out into responsive columns.
+- Use some Ant Design `Row` and `Col`'s to layout your forms if you want to spread them out into responsive columns. If you use an ``s, be sure to use ``s with them too!
- Use the `form-module` CSS class if you want to add a visual separation to a grouping of items.
diff --git a/web/pages/hardware-info.tsx b/web/pages/hardware-info.tsx
index 3bff965ea..bb2a3779f 100644
--- a/web/pages/hardware-info.tsx
+++ b/web/pages/hardware-info.tsx
@@ -1,5 +1,5 @@
import { BulbOutlined, LaptopOutlined, SaveOutlined } from '@ant-design/icons';
-import { Row, Typography } from 'antd';
+import { Row, Col, Typography } from 'antd';
import React, { useEffect, useState } from 'react';
import { fetchData, FETCH_INTERVAL, HARDWARE_STATS } from '../utils/apis';
import Chart from '../components/chart';
@@ -67,39 +67,45 @@ export default function HardwareInfo() {
];
return (
-
+ <>
Hardware Info
- }
- color={series[0].color}
- progress
- centered
- />
- }
- color={series[1].color}
- progress
- centered
- />
- }
- color={series[2].color}
- progress
- centered
- />
+
+ }
+ color={series[0].color}
+ progress
+ centered
+ />
+
+
+ }
+ color={series[1].color}
+ progress
+ centered
+ />
+
+
+ }
+ color={series[2].color}
+ progress
+ centered
+ />
+
-
+ >
);
}
diff --git a/web/pages/viewer-info.tsx b/web/pages/viewer-info.tsx
index eaa73a8eb..c3db3ce40 100644
--- a/web/pages/viewer-info.tsx
+++ b/web/pages/viewer-info.tsx
@@ -1,5 +1,5 @@
import React, { useState, useEffect, useContext } from 'react';
-import { Table, Row, Typography } from 'antd';
+import { Table, Row, Col, Typography } from 'antd';
import { formatDistanceToNow } from 'date-fns';
import { UserOutlined } from '@ant-design/icons';
import { SortOrder } from 'antd/lib/table/interface';
@@ -99,22 +99,28 @@ export default function ViewersOverTime() {
{online && (
+
+ }
+ />
+
+ )}
+
}
/>
- )}
- }
- />
- }
- />
+
+
+ }
+ />
+
diff --git a/web/styles/home.scss b/web/styles/home.scss
index 19477b914..7a5a211a4 100644
--- a/web/styles/home.scss
+++ b/web/styles/home.scss
@@ -1,6 +1,4 @@
.home-container {
- max-width: 1000px;
-
.online-status-section {
margin-bottom: 1em;
.online-details-card {
diff --git a/web/styles/main-layout.scss b/web/styles/main-layout.scss
index 9878c4099..2a67831cf 100644
--- a/web/styles/main-layout.scss
+++ b/web/styles/main-layout.scss
@@ -49,6 +49,9 @@
.main-content-container {
padding: 2em 3em 3em;
+ max-width: 1024px;
+ min-width: 50vw;
+ margin: auto;
}
.footer-container {
diff --git a/web/styles/markdown-editor.scss b/web/styles/markdown-editor.scss
index c688a7a63..b6ac25ad8 100644
--- a/web/styles/markdown-editor.scss
+++ b/web/styles/markdown-editor.scss
@@ -32,6 +32,8 @@
// Custom CSS for formatting the preview text
.markdown-editor-preview-pane {
+ color: var(--black-75);
+
a {
color: var(--owncast-purple);
}
@@ -49,7 +51,6 @@
}
-
// Set the background color of the editor text input
textarea {
background-color: var(--gray) !important;