Add BumbleberryOverrideHelper for modern feature support and update main.js for responsive column visibility although not needed with override. Fixes #10

This commit is contained in:
2026-02-03 06:43:32 +00:00
parent 5e6f962c95
commit c2d1bdd017
5 changed files with 361 additions and 163 deletions
@@ -0,0 +1,11 @@
module BumbleberryOverrideHelper
MODERN_FEATURES = [:css3_boxsizing, :css_sel3, :flexbox, :css_grid, :svg].freeze
def capable_of(capability)
if MODERN_FEATURES.include?(capability)
true
else
super
end
end
end