Files
nairobi/app/components/widgets/feeds/proposals_component.rb
Javi Martín 98aea588e5 Simplify debates and proposals feed layout
Using the `:only-child` selector we can adjust widths with CSS and don't
have to rely on methods calculating which features are available.
2020-12-27 16:44:51 +01:00

8 lines
135 B
Ruby

class Widgets::Feeds::ProposalsComponent < ApplicationComponent
attr_reader :feed
def initialize(feed)
@feed = feed
end
end