Skip to content

Commit

Permalink
Biogenerator UI followup fixes (#5344)
Browse files Browse the repository at this point in the history
## About The Pull Request

fixes some minor biogenerator UI issues caused by
#5313

## Changelog
:cl:
fix: Fixed the biogenerator UI shifting when adding reagents to a
container.
fix: Made the biogenerator window's default height tall enough to show
everything by default.
/:cl:
  • Loading branch information
Absolucy authored Feb 8, 2025
1 parent 25febf1 commit be3a4c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tgui/packages/tgui/interfaces/Biogenerator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export const Biogenerator = () => {
const space = beaker ? beakerMaxVolume - beakerCurrentVolume : 1;

return (
<Window width={400} height={500}>
<Window width={400} height={530}>
<Window.Content>
<Stack vertical fill>
<Stack.Item>
Expand Down Expand Up @@ -109,7 +109,7 @@ const Controls = () => {
} = data;

return (
<Section fill>
<Section fill minHeight="80px">
<LabeledList>
<LabeledList.Item
label="Biomass"
Expand Down

0 comments on commit be3a4c0

Please sign in to comment.