[Vuejs]-Checkboxes rendered on separate line (CSS, vue)

0๐Ÿ‘

โœ…

Ok, I have found a combination that fixes the trouble

I had to remove these CSS attributes:

.sign-up-form__input {
  overflow: auto;

.atoms__checkbox-label {
  display: block;

.atoms__checkbox-label span {
  position: absolute;

.atoms__checkbox-label:after {
  display: block;

Leave a comment