Skip to content

Commit

Permalink
Fix borders when not grouped
Browse files Browse the repository at this point in the history
  • Loading branch information
MewenLeHo committed Sep 13, 2023
1 parent d249405 commit 0eb7e2c
Showing 1 changed file with 14 additions and 8 deletions.
22 changes: 14 additions & 8 deletions scss/forms/_form-check.scss
Original file line number Diff line number Diff line change
Expand Up @@ -262,14 +262,6 @@
height: 100%;
content: "";
}

&:not(:first-of-type) {
border-left: 0;
}

&:not(:last-of-type) {
border-right: 0;
}
}

&:hover + .btn,
Expand Down Expand Up @@ -386,4 +378,18 @@
// End mod
}

.btn-group {
.btn-check {
+ .btn {
&:not(:first-of-type) {
border-left: 0;
}

&:not(:last-of-type) {
border-right: 0;
}
}
}
}

// Boosted mod: no `@if enable-dark-mode` since Boosted doesn't have any dark mode for now

0 comments on commit 0eb7e2c

Please sign in to comment.