Skip to content

Commit

Permalink
Fix column sizing on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexandruIstrate committed Jan 23, 2024
1 parent 8677e73 commit 3bfd2e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions salary-calc/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ function App() {
<Container>
<Row>
{/* Calculator Column */}
<Col>
<Col xs={12} md={8} lg={9}>
<Form>
{/* Source Country */}
<Form.Group
Expand Down Expand Up @@ -305,7 +305,7 @@ function App() {
</Col>

{/* History Column */}
<Col xs={4}>
<Col xs={12} md={4} lg={3}>
<Card>
<Card.Header>Recent Conversions</Card.Header>
<ListGroup variant="flush">
Expand Down

0 comments on commit 3bfd2e8

Please sign in to comment.