You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment, when including _forms.scss you also have to include _checkbox.scss and _radio.scss if you want to use those elements.
As I understand it, the point of optionally including the partials is to reduce the finial file size, however I think in this case it's a little too find grained: if you plan on using forms (by including _forms.sss) then you have no real idea of if a form in your application will use checkbox or radio elements in future.
More importantly, it's very possible that the person adding the checkboxes isn't the same person that added the CSS, and it might not get noticed (as they are styled as browser default anyway).
Solution: I think we should add the checkbox and radio elements in to _form.scss.
The text was updated successfully, but these errors were encountered:
At the moment, when including
_forms.scss
you also have to include_checkbox.scss
and_radio.scss
if you want to use those elements.As I understand it, the point of optionally including the partials is to reduce the finial file size, however I think in this case it's a little too find grained: if you plan on using forms (by including
_forms.sss
) then you have no real idea of if a form in your application will use checkbox or radio elements in future.More importantly, it's very possible that the person adding the checkboxes isn't the same person that added the CSS, and it might not get noticed (as they are styled as browser default anyway).
Solution: I think we should add the checkbox and radio elements in to
_form.scss
.The text was updated successfully, but these errors were encountered: