Sha256: fa83eb6917e9953a27a751b1ab1488cf1f1c2b10c623ae5b4fec2d2af46fbfd4
Contents?: true
Size: 860 Bytes
Versions: 92
Compression:
Stored size: 860 Bytes
Contents
# frozen_string_literal: true module Spree module Admin class StyleGuideController < Spree::Admin::BaseController respond_to :html layout 'spree/layouts/admin_style_guide' def index @topics = { typography: [ 'fonts', 'colors', 'lists', 'icons' ], forms: [ 'building_forms', 'buttons', 'helper_text', 'inputs', 'labels', 'validation' ], components: [ 'pills', 'modals', 'tabs' ], messaging: [ 'loading', 'flashes', 'tooltips' ], tables: [ 'building_tables', 'pagination' ] } end end end end
Version data entries
92 entries across 92 versions & 1 rubygems