Skip to content
Snippets Groups Projects
Commit aa68d054 authored by Kristen Pol's avatar Kristen Pol
Browse files

Add hook_preprocess_page to not strip Drupal CSS.

parent f76fa02f
Branches
Tags
No related merge requests found
Pipeline #249493 passed
<?php
/**
* @file
* Functions to support theming in the Starshot Demo theme.
*/
/**
* Implements hook_preprocess_page().
*/
function starshot_demo_preprocess_page(array &$variables): void {
// Do not strip out Drupal core styles.
$variables['modifier_class'] = FALSE;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment