re-introduce the css that was there before

This commit is contained in:
Olivier Gagnon
2021-09-11 12:51:46 -04:00
parent 8d1adff2ae
commit b9dcffdf58
20 changed files with 23 additions and 111 deletions
+2 -2
View File
@@ -28,7 +28,7 @@ export function ActiveScriptsRoot(props: IProps): React.ReactElement {
}, []);
return (
<>
<div className="active-scripts-container">
<p>
This page displays a list of all of your scripts that are currently running across every machine. It also
provides information about each script's production. The scripts are categorized by the hostname of the servers
@@ -37,6 +37,6 @@ export function ActiveScriptsRoot(props: IProps): React.ReactElement {
<ScriptProduction {...props} />
<ServerAccordions {...props} />
</>
</div>
);
}