diff --git a/README.rst b/README.rst
index 1f421b8e8..6ce127417 100644
--- a/README.rst
+++ b/README.rst
@@ -53,6 +53,7 @@ Environment Variables
frontend-app-authentication in which these menus are considered distractions from the user's task.
* ``ENABLE_HEADER_LANG_SELECTOR`` - A boolean to enable the language selector in the header component.
* ``SITE_SUPPORTED_LANGUAGES`` - A list with all the languages to display in the selector.
+* ``LOGO_URL_MOBILE`` - The URL of the site's logo for mobile. This logo is displayed in the header.
Installation
diff --git a/src/learning-header/LearningHeader.jsx b/src/learning-header/LearningHeader.jsx
index 387d89c3a..ff9445a86 100644
--- a/src/learning-header/LearningHeader.jsx
+++ b/src/learning-header/LearningHeader.jsx
@@ -1,4 +1,5 @@
import React, { useContext, useEffect, useState } from 'react';
+import Responsive from 'react-responsive';
import PropTypes from 'prop-types';
import { getConfig } from '@edx/frontend-platform';
import { injectIntl, intlShape } from '@edx/frontend-platform/i18n';
@@ -40,12 +41,24 @@ const LearningHeader = ({
});
const headerLogo = (
-
+ <>
+
+
+
+
+
+
+ >
);
return (