Sha256: 78c18bd1d0ea70fecc8448aadeb4124ae438354ff524c8a9e812202b52748ff6

Contents?: true

Size: 1.53 KB

Versions: 1

Compression:

Stored size: 1.53 KB

Contents

/**
 * Use development mode to silence fatal errors
 *
 * @access private
 *
 * @type Bool
 */
$flint__development-mode: false !global;

/**
 * Set global variable to check if foundation has been set
 *
 * @access private
 *
 * @type String
 */
$flint__foundation: "non-existent" !global;

/**
 * Keep count of all instances
 *
 * @access private
 *
 * @type Number
 */
$flint__instance-count: 0 !global;

/**
 * Keep map of all instances
 *
 * @access private
 *
 * @type Map
 */
$flint__instances: () !global;

/**
 * Font size for em calculation
 *
 * @access private
 *
 * @type Number
 */
$flint__base-font-size: 16px !global;

/**
 * Detect if Ruby functions are available
 *
 * @access private
 *
 * @type Bool
 */
$flint__use-ruby-functions: if(flint-use-ruby-functions() == true, true, false) !global;

/**
 * Global syntax support
 *
 * @access private
 *
 * @type String
 */
$flint__support-syntax: flint-get-value("settings", "support-syntax") !global;

/**
 * Gather all keys, breakpoints and column counts
 *
 * @access private
 *
 * @type List
 */
$flint__all-keys: flint-get-all-keys() !global;
$flint__all-breakpoints: flint-get-all-breakpoints() !global;
$flint__all-columns: flint-get-all-columns() !global;

/**
 * Cache selector instance lists
 *
 * @access private
 *
 * @type Map
 */
$flint__cached-instances: () !global;

/**
 * Cache calculated values
 *
 * @access private
 *
 * @type Map
 */
$flint__cached-values: () !global;

/**
 * Cache calculation results
 *
 * @access private
 *
 * @type Map
 */
$flint__cache-results: () !global;

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
flint-gs-2.0.2 stylesheets/flint/globals/_globals.scss