Skip to content

Commit

Permalink
feat(ui5-tabcontainer): Responsive paddings are now supported
Browse files Browse the repository at this point in the history
Fixes: SAP#2539
  • Loading branch information
TeodorTaushanov committed Feb 17, 2021
1 parent d2cbc10 commit 56ac70e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/base/src/MediaRange.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ const _getCurrentRange = (name, width = window.innerWidth) => {
* @name MediaRange.RANGESETS
* @public
*/
var RANGESETS = {
const RANGESETS = {
/**
* A 4-step range set (S-M-L-XL).
*
Expand All @@ -86,7 +86,7 @@ var RANGESETS = {
* @name MediaRange.RANGESETS.RANGE_4STEPS
* @public
*/
RANGE_4STEPS: "4Step"
RANGE_4STEPS: "4Step",
};

/**
Expand All @@ -97,7 +97,7 @@ var RANGESETS = {
*/

const MediaRange = {
RANGESETS: RANGESETS,
RANGESETS,
_querySets: {},
initRangeSet: _initRangeSet,
getCurrentRange: _getCurrentRange,
Expand Down

0 comments on commit 56ac70e

Please sign in to comment.