grep-components 1.15.0-grepf-1792.4 → 1.15.0-grepf-1792.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +43 -19
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -21735,25 +21735,49 @@ var EnvironmentTitle = styled('div')(function () { return ({
|
|
|
21735
21735
|
color: 'rgba(0, 0, 0, 0.33)',
|
|
21736
21736
|
marginLeft: '17px',
|
|
21737
21737
|
}); });
|
|
21738
|
-
var Toolbar = styled('div')(function () {
|
|
21739
|
-
|
|
21740
|
-
|
|
21741
|
-
|
|
21742
|
-
|
|
21743
|
-
|
|
21744
|
-
}
|
|
21745
|
-
|
|
21746
|
-
|
|
21747
|
-
|
|
21748
|
-
|
|
21749
|
-
|
|
21750
|
-
|
|
21751
|
-
|
|
21752
|
-
|
|
21753
|
-
|
|
21754
|
-
|
|
21755
|
-
|
|
21756
|
-
});
|
|
21738
|
+
var Toolbar = styled('div')(function (_a) {
|
|
21739
|
+
var _b;
|
|
21740
|
+
var theme = _a.theme;
|
|
21741
|
+
return (_b = {
|
|
21742
|
+
display: 'flex',
|
|
21743
|
+
flexDirection: 'column'
|
|
21744
|
+
},
|
|
21745
|
+
_b[theme.breakpoints.down('sm')] = {
|
|
21746
|
+
height: "".concat(dimensions.toolbarMenuHeight + dimensions.toolbarHeightMobile, "px"),
|
|
21747
|
+
minHeight: "".concat(dimensions.toolbarMenuHeight + dimensions.toolbarHeightMobile, "px"),
|
|
21748
|
+
maxHeight: "".concat(dimensions.toolbarMenuHeight + dimensions.toolbarHeightMobile, "px"),
|
|
21749
|
+
},
|
|
21750
|
+
_b[theme.breakpoints.up('sm')] = {
|
|
21751
|
+
height: "".concat(dimensions.toolbarMenuHeight + dimensions.toolbarHeight, "px"),
|
|
21752
|
+
minHeight: "".concat(dimensions.toolbarMenuHeight + dimensions.toolbarHeight, "px"),
|
|
21753
|
+
maxHeight: "".concat(dimensions.toolbarMenuHeight + dimensions.toolbarHeight, "px"),
|
|
21754
|
+
},
|
|
21755
|
+
_b);
|
|
21756
|
+
});
|
|
21757
|
+
var ToolbarFixer = styled('div')(function (_a) {
|
|
21758
|
+
var _b;
|
|
21759
|
+
var theme = _a.theme;
|
|
21760
|
+
return (_b = {
|
|
21761
|
+
display: 'flex',
|
|
21762
|
+
flexDirection: 'column',
|
|
21763
|
+
position: 'fixed',
|
|
21764
|
+
top: 0,
|
|
21765
|
+
left: 0,
|
|
21766
|
+
right: 0,
|
|
21767
|
+
zIndex: 101
|
|
21768
|
+
},
|
|
21769
|
+
_b[theme.breakpoints.down('sm')] = {
|
|
21770
|
+
height: "".concat(dimensions.toolbarMenuHeight + dimensions.toolbarHeightMobile, "px"),
|
|
21771
|
+
minHeight: "".concat(dimensions.toolbarMenuHeight + dimensions.toolbarHeightMobile, "px"),
|
|
21772
|
+
maxHeight: "".concat(dimensions.toolbarMenuHeight + dimensions.toolbarHeightMobile, "px"),
|
|
21773
|
+
},
|
|
21774
|
+
_b[theme.breakpoints.up('sm')] = {
|
|
21775
|
+
height: "".concat(dimensions.toolbarMenuHeight + dimensions.toolbarHeight, "px"),
|
|
21776
|
+
minHeight: "".concat(dimensions.toolbarMenuHeight + dimensions.toolbarHeight, "px"),
|
|
21777
|
+
maxHeight: "".concat(dimensions.toolbarMenuHeight + dimensions.toolbarHeight, "px"),
|
|
21778
|
+
},
|
|
21779
|
+
_b);
|
|
21780
|
+
});
|
|
21757
21781
|
var ToolbarInner = styled('div')(function (_a) {
|
|
21758
21782
|
var _b;
|
|
21759
21783
|
var colors = _a.colors, theme = _a.theme;
|