So, ya see how the titles and text boxes and buttons are all kind of offset from each other and really messy looking? How can i make it so they line up together? I'd especially like for the buttons to kind of "anchor" themselves to the bottom of this component, if that makes sense.
I have tried a few things already. I found a thread that was talking about Cards and Card Decks and how to align all the buttons of a Card to each other, however, none of the styling options that they suggested worked with my current situation.
Code wise, here is the component all this is housed within
import { Button, Row, Col, Container, Form } from "react-bootstrap"
import styles from "../styles/ParameterList.module.scss"
import {useState} from 'react'
const ParameterList = ({onRandomList, onNewList, onClear, onDupesCheck, dupesChecked}) => {
const [newListState, setNewListState] = useState('')
const [minNumberState, setMinNumberState] = useState('')
const [maxNumberState, setMaxNumberState] = useState('')
return (
<div className={styles.container} id="paramsDiv">
<Container fluid >
<Row>
<Col align="center">
<Form>
<Form.Label>Generate an entirely new list of instruments</Form.Label>
<Form.Control className={styles.formControlOverride} type="number" placeholder="Minimum" min="0" value={minNumberState} onChange={(e) => setMinNumberState(e.target.value)}/>
<Form.Control className={styles.formControlOverride} type="number" placeholder="Maximum" min="0" value={maxNumberState} onChange={(e) => setMaxNumberState(e.target.value)}/>
<Button className='align-self-end' type="button" onClick={() => {onRandomList(minNumberState, maxNumberState); setMaxNumberState(''); setMinNumberState('')}}>Generate Random List</Button>
</Form>
</Col>
<Col align="center">
<Form>
<Form.Label>Add a random group of new instruments</Form.Label>
<Form.Control className={styles.formControlOverride} type="number" placeholder="Amount of Instruments" min="0" value={newListState} onChange={(e) => setNewListState(e.target.value)}/>
<Button className='align-self-end' type="button" onClick={() => {onNewList(newListState); setNewListState('')}}>Generate Random Instrument(s)</Button>
</Form>
</Col>
<Col align="center">
<Form>
<Form.Label>Choose an instrument to add to the list</Form.Label>
<Button>Select Instrument</Button>
</Form>
</Col>
</Row>
</Container>
</div>
)
}
export default ParameterList
And here is the scss that goes with it
.container {
background-color: #fff;
padding: 1.5rem;
margin: 1rem 10rem;
align-items: center;
border-radius: .5rem;
}
.formControlOverride {
margin: .5rem
}
.formCheckOverride {
margin-bottom: .5rem;
}
Thanks for any help in advance!
