Skip to content

Commit e982d0b

Browse files
author
Nejla Şahin
authored
Update VolumeButton.jsx
1 parent 6d0a7b4 commit e982d0b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/components/VolumeButton.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,15 @@ function VolumeButton({ setBaseUrl, resetButton, setResetButton }) {
5454
<>
5555
<div className="container">
5656
<div className="row my-5 mx-0">
57-
<div className="col-md-2">
57+
<div className="col-xl-2 col-lg-12">
5858
<h5>Alcohol by Volume</h5>
5959
</div>
60-
<div className="col-md-4">
60+
<div className="col-xl-4 col-lg-12">
6161
<button type="button" className={`${noneButton ? "btn-primary" : "btn-outline-primary"} btn ms-5`} onClick={none}>None</button>
6262
<button type="button" className={`${gtButton ? "btn-primary" : "btn-outline-primary"} btn ms-2`} onClick={greaterThan}>Greater Than</button>
6363
<button type="button" className={`${ltButton ? "btn-primary" : "btn-outline-primary"} btn ms-2`} onClick={lowerThan}>Lower Than</button>
6464
</div>
65-
<div className="col-md-4">
65+
<div className="col-xl-4 col-lg-12">
6666
<Slider defaultValue={30} min={0} max={100} disabled={noneButton} step={0.1} onChange={handleValueChange} />
6767
</div>
6868
</div>

0 commit comments

Comments
 (0)