I am trying to create a form using Bootstrap 4. But the label for the file input overflows the column. I couldn't find a way to make it fit in the column. Is there a bootstrap way or custom css that can achieve this?
Edit: I'm sorry that my question was not well explained. What I meant by the label is that the label in file input. That isi "Choose file...". As can be seen the file input in the image overflows on the right side. It is not aligned with the rest of input fields.
<div class="form-group row">
<label for="image-upload" class="col-sm-3 col-form-label">Resim Yükle (5:3 Oranlı)</label>
<div class="custom-file col-sm-9">
<input type="file" class="custom-file-input" id="image-upload" required>
<label class="custom-file-label" for="image-upload">Choose file...</label>
<div class="invalid-feedback">Example invalid custom file feedback</div>
</div>
<!--<div id="uploaded-images"></div> id=cover-image-input-->
</div>
