Support .grid + small in forms

This commit is contained in:
Chris Buckley 2022-10-31 15:20:21 +00:00
parent 3809ba3afa
commit b96dfab168

View file

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