Skip to content

Commit

Permalink
Fix character prefs augments page boundaries (#25433) (#973)
Browse files Browse the repository at this point in the history
fix limbs page scaling

Co-authored-by: lessthanthree <[email protected]>
  • Loading branch information
Steals-The-PRs and lessthnthree authored Dec 5, 2023
1 parent 1c7a6c4 commit 72c1fe8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tgui/packages/tgui/interfaces/PreferencesMenu/LimbsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ export const LimbsPage = (props) => {
return (
<Stack minHeight="100%">
<Stack.Item minWidth="33%" minHeight="100%">
<Section fill scrollable title="Markings" height="237%">
<Section fill scrollable title="Markings" height="197%">
<div>
<Dropdown
grow
Expand All @@ -233,7 +233,7 @@ export const LimbsPage = (props) => {
</Section>
</Stack.Item>
<Stack.Item minWidth="33%">
<Section title="Character Preview" fill align="center" height="237%">
<Section title="Character Preview" fill align="center" height="197%">
<CharacterPreview
id={data.character_preview_view}
height="25%"
Expand Down Expand Up @@ -269,7 +269,7 @@ export const LimbsPage = (props) => {
))}
</Stack>
</Section>
<Section fill scrollable title="Augmentations" height="148%">
<Section fill scrollable title="Augmentations" height="107%">
{data.limbs_data.map((val) => (
<AugmentationPage key={val.slot} limb={val} data={data} />
))}
Expand Down

0 comments on commit 72c1fe8

Please sign in to comment.