diff -u b/core/modules/breakpoint/breakpoint.module b/core/modules/breakpoint/breakpoint.module
--- b/core/modules/breakpoint/breakpoint.module
+++ b/core/modules/breakpoint/breakpoint.module
@@ -9,6 +9,29 @@
use Drupal\breakpoint\BreakpointGroup;
/**
+ * Implements hook_help().
+ */
+function breakpoint_help($path, $arg) {
+ switch ($path) {
+ case 'admin/help#breakpoint':
+ $output = '';
+ $output .= '
' . t('About') . '
';
+ $output .= '' . t('The Breakpoint module allows the management of breakpoints and breakpoint groups for responsive designs.') . '
';
+ $output .= '' . t('Uses') . '
';
+ $output .= '';
+ $output .= '- ' . t('Breakpoints') . '
';
+ $output .= '- ' . t('Breakpoints can be defined by themes or other modules, a breakpoints consist of a name and a media query.') . '
';
+ $output .= '- ' . t('Breakpoint groups') . '
';
+ $output .= '- ' . t('Breakpoints can be organized into breakpoint groups, so that it is easier to manage and use them.') . '
';
+ $output .= '- ' . t('Multipliers') . '
';
+ $output .= '- ' . t('Multipliers can be defined for each breakpoint and are needed to handle screens with high dpi.') . '
';
+ $output .= '
';
+
+ return $output;
+ }
+}
+
+/**
* Implements hook_enable().
*
* Import breakpoints from all enabled themes.