Merge pull request #271 from cmbuckley/dev

Support .grid + small in forms
This commit is contained in:
Lucas Larroche 2023-01-28 13:09:08 +07:00 committed by GitHub
commit 010dc5594d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -328,7 +328,13 @@ select {
} }
// Helper // Helper
:where(input, select, textarea) { $inputs: "input, select, textarea";
@if ($enable-classes and $enable-grid) {
$inputs: $inputs + ", .grid";
}
:where(#{$inputs}) {
+ small { + small {
display: block; display: block;
width: 100%; width: 100%;