you could use the wildcard *, works on all blocks & layouts
public function getThemeBlockClasses()
{
return [
'*' => [
'your-container-class',
],
];
}
it somehow works for me.
you could use the wildcard *, works on all blocks & layouts
public function getThemeBlockClasses()
{
return [
'*' => [
'your-container-class',
],
];
}
it somehow works for me.