diff --git a/tgui/packages/tgui/interfaces/VorePanel/VoreBellySelectionAndCustomization.tsx b/tgui/packages/tgui/interfaces/VorePanel/VoreBellySelectionAndCustomization.tsx index 3e30618ae8d..c576608120d 100644 --- a/tgui/packages/tgui/interfaces/VorePanel/VoreBellySelectionAndCustomization.tsx +++ b/tgui/packages/tgui/interfaces/VorePanel/VoreBellySelectionAndCustomization.tsx @@ -1,7 +1,8 @@ import { BooleanLike } from 'common/react'; +import { Stack } from 'tgui-core/components'; import { useBackend } from '../../backend'; -import { Box, Divider, Flex, Icon, Section, Tabs } from '../../components'; +import { Box, Divider, Icon, Section, Tabs } from '../../components'; import { digestModeToColor } from './constants'; import { bellyData, hostMob, selectedData } from './types'; import { VoreSelectedBelly } from './VoreSelectedBelly'; @@ -17,8 +18,8 @@ export const VoreBellySelectionAndCustomization = (props: { const { our_bellies, selected, show_pictures, host_mobtype } = props; return ( - - + +
act('newbelly')}> @@ -54,8 +55,8 @@ export const VoreBellySelectionAndCustomization = (props: { ))}
-
- + + {selected && (
)} -
-
+ + ); }; diff --git a/tgui/packages/tgui/interfaces/VorePanel/VoreInsidePanel.tsx b/tgui/packages/tgui/interfaces/VorePanel/VoreInsidePanel.tsx index 538ed71c137..b5bba05f06e 100644 --- a/tgui/packages/tgui/interfaces/VorePanel/VoreInsidePanel.tsx +++ b/tgui/packages/tgui/interfaces/VorePanel/VoreInsidePanel.tsx @@ -19,7 +19,7 @@ export const VoreInsidePanel = (props: { } return ( -
+
You are currently {absorbed ? 'absorbed into' : 'inside'} diff --git a/tgui/packages/tgui/interfaces/VorePanel/VoreUserPreferences.tsx b/tgui/packages/tgui/interfaces/VorePanel/VoreUserPreferences.tsx index 0f10b6e0e34..f6ff55f2688 100644 --- a/tgui/packages/tgui/interfaces/VorePanel/VoreUserPreferences.tsx +++ b/tgui/packages/tgui/interfaces/VorePanel/VoreUserPreferences.tsx @@ -1,7 +1,7 @@ import { BooleanLike } from 'common/react'; import { useBackend } from '../../backend'; -import { Box, Button, Divider, Flex, Section } from '../../components'; +import { Button, Divider, Flex, Section } from '../../components'; import { prefData } from './types'; import { VoreUserPreferencesAesthetic } from './VoreUserPreferencesTabs/VoreUserPreferencesAesthetic '; import { VoreUserPreferencesMechanical } from './VoreUserPreferencesTabs/VoreUserPreferencesMechanical '; @@ -442,7 +442,7 @@ export const VoreUserPreferences = (props: { }; return ( - +
-
+
); }; diff --git a/tgui/packages/tgui/interfaces/VorePanel/index.tsx b/tgui/packages/tgui/interfaces/VorePanel/index.tsx index ad2547cf087..9cf7a76a6b2 100644 --- a/tgui/packages/tgui/interfaces/VorePanel/index.tsx +++ b/tgui/packages/tgui/interfaces/VorePanel/index.tsx @@ -1,4 +1,5 @@ import { useState } from 'react'; +import { Stack } from 'tgui-core/components'; import { useBackend } from '../../backend'; import { Button, Flex, Icon, NoticeBox, Tabs } from '../../components'; @@ -38,42 +39,56 @@ export const VorePanel = (props) => { return ( - {(data.unsaved_changes && ( - - - Warning: Unsaved Changes! - - - - - - - - - )) || - ''} - - - setTabIndex(0)}> - Bellies - - - setTabIndex(1)}> - Preferences - - - - {tabs[tabIndex] || 'Error'} + + + {(data.unsaved_changes && ( + + + Warning: Unsaved Changes! + + + + + + + + + )) || + ''} + + 500 ? '30%' : '20%'}> + + + + + setTabIndex(0)} + > + Bellies + + + setTabIndex(1)} + > + Preferences + + + + + {tabs[tabIndex] || 'Error'} + );