Skip to content

Commit

Permalink
prettier styles
Browse files Browse the repository at this point in the history
  • Loading branch information
Doubleumc committed Jul 25, 2024
1 parent 02af80f commit ea807ed
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 4 deletions.
12 changes: 10 additions & 2 deletions tgui/packages/tgui/interfaces/CasSim.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
import { useBackend } from '../backend';
import { Button, Section, ProgressBar, NoticeBox, Box, Stack } from '../components';
import {
Box,
Button,
NoticeBox,
ProgressBar,
Section,
Stack,
} from '../components';
import { Window } from '../layouts';

export const CasSim = (_props, context) => {
Expand Down Expand Up @@ -34,7 +41,8 @@ export const CasSim = (_props, context) => {
good: [-Infinity, 0.33],
average: [0.33, 0.67],
bad: [0.67, Infinity],
}}>
}}
>
<Box textAlign="center" fontSize="15px">
{Math.ceil(timeLeft / 10)} seconds until the console&apos;s
processors finish cooling!
Expand Down
11 changes: 10 additions & 1 deletion tgui/packages/tgui/interfaces/GameMaster.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
import { useBackend } from '../backend';
import { Dropdown, Box, Button, Section, Slider, Collapsible, Stack, Divider } from '../components';
import {
Box,
Button,
Collapsible,
Divider,
Dropdown,
Section,
Slider,
Stack,
} from '../components';
import { Window } from '../layouts';

export const GameMaster = (props, context) => {
Expand Down
3 changes: 2 additions & 1 deletion tgui/packages/tgui/interfaces/SquadInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,8 @@ export const SquadInfo = () => {
<Section
title={`${data.squad} Platoon Sergeant: ${
data.pltsgt?.name ?? 'None'
}`}>
}`}
>
<SquadObjectives />
</Section>
</Flex.Item>
Expand Down

0 comments on commit ea807ed

Please sign in to comment.