You are here

function gin_login_css_alter in Gin Login 8

CSS_alter()

File

./gin_login.module, line 168
gin_login.module

Code

function gin_login_css_alter(&$css, $assets) {

  // UPDATE THIS PATH TO YOUR MODULE'S CSS PATH.
  $path = drupal_get_path('module', 'gin_login') . '/dist/css/gin_login.css';
  if (isset($css[$path])) {

    // Use anything greater than 100 to have it load
    // after the theme as CSS_AGGREGATE_THEME is set to 100.
    $css[$path]['group'] = 201;
  }
}