diff --git a/tgui/packages/tgui/interfaces/AnomalyAISpawner.tsx b/tgui/packages/tgui/interfaces/AnomalyAISpawner.tsx index 4a691ad930..68649f0678 100644 --- a/tgui/packages/tgui/interfaces/AnomalyAISpawner.tsx +++ b/tgui/packages/tgui/interfaces/AnomalyAISpawner.tsx @@ -2,14 +2,7 @@ import { classes } from 'common/react'; import { useState } from 'react'; import { useBackend } from '../backend'; -import { - Box, - Button, - Collapsible, - Divider, - Section, - Stack, -} from '../components'; +import { Box, Button, Divider, Section, Stack } from '../components'; import { Window } from '../layouts'; type AnomalyAIPreset = { @@ -56,66 +49,79 @@ const AnomalyAISpawnerr = (props) => { const { presets } = data; return (
- - - -
- {Object.keys(presets).map((dictKey) => ( - - {presets[dictKey].map((squad) => ( - - - - ))} - - ))} -
-
- - -
- - - - - - - - {chosenPreset ? chosenPreset.description : 'NULL'} - - - + + +
+ {Object.keys(presets).map((dictKey) => ( + + + >>> {dictKey} Class Hazard + {presets[dictKey].map((squad) => ( + + + + ))} -
-
-
+ ))} +
+
+ + + + + Selected Preset + + + {chosenPreset ? chosenPreset.name : 'NONE'} + + + + + + + + + {chosenPreset ? chosenPreset.description : 'NULL'} + + + + +
); diff --git a/tgui/packages/tgui/styles/interfaces/AnomalyAISpawner.scss b/tgui/packages/tgui/styles/interfaces/AnomalyAISpawner.scss index 908f6f64a2..38b9ec9754 100644 --- a/tgui/packages/tgui/styles/interfaces/AnomalyAISpawner.scss +++ b/tgui/packages/tgui/styles/interfaces/AnomalyAISpawner.scss @@ -98,21 +98,40 @@ width: 100%; height: 100%; filter: brightness(2); - .AnomalyClass { + .AnomalyType { background-color: #02b83e42; border-left: 1.5px #00e94ed3 solid; + border-right: 1.5px #00e94ed3 solid; padding-bottom: 1px; font-weight: bold; border-radius: 0px; + width: 100%; + text-align: center; + color: #00e94ed3; } - .AnomalyType { + .AnomalyClass { background-color: transparent; - margin-left: 4%; - width: 92%; + width: 100%; margin-right: 4%; + padding-bottom: 2px; border-radius: 0px; border-bottom: 1px #00e94ed3 solid; - border-top: 1px #00e94ed3 solid; - text-align: center; + text-align: left; + } + .SelectedPreset { + background-color: #00e94eb6; + color: black; + width: 100%; + margin-right: 4%; + padding-bottom: 2px; + border-radius: 0px; + } + .AnomalyInfo { + background-color: #02b83e42; + border-left: 1.5px #00e94ed3 solid; + border-right: 1.5px #00e94ed3 solid; + padding-left: 5px; + width: 100%; + border-radius: 0px; } }