@banch0u/core-project-test-repository 1.9.10 → 1.9.12
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.
|
@@ -116,7 +116,7 @@ var Sidebar = function Sidebar(_ref) {
|
|
|
116
116
|
return location.pathname.includes(item.key);
|
|
117
117
|
})) === null || _items$flatMap$find === void 0 ? void 0 : _items$flatMap$find.key;
|
|
118
118
|
return /*#__PURE__*/React.createElement(Sider, {
|
|
119
|
-
width:
|
|
119
|
+
width: 287,
|
|
120
120
|
collapsible: true,
|
|
121
121
|
collapsed: collapsed,
|
|
122
122
|
collapsedWidth: 64,
|
|
@@ -132,7 +132,9 @@ var Sidebar = function Sidebar(_ref) {
|
|
|
132
132
|
})), /*#__PURE__*/React.createElement(Link, {
|
|
133
133
|
to: PLATFORM_PATH,
|
|
134
134
|
className: style.buttons
|
|
135
|
-
}, collapsed ? /*#__PURE__*/React.createElement(
|
|
135
|
+
}, collapsed ? /*#__PURE__*/React.createElement("div", {
|
|
136
|
+
className: style.emblem
|
|
137
|
+
}, /*#__PURE__*/React.createElement(DsgLogoEmblem, null)) : imageSrc ? /*#__PURE__*/React.createElement("img", {
|
|
136
138
|
src: imageSrc,
|
|
137
139
|
alt: "Company Logo"
|
|
138
140
|
}) : isDark ? /*#__PURE__*/React.createElement(DsgLogo, {
|
|
@@ -25,15 +25,22 @@
|
|
|
25
25
|
position: absolute;
|
|
26
26
|
left: 15px;
|
|
27
27
|
bottom: 16px;
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
}
|
|
28
|
+
display: flex;
|
|
29
|
+
justify-content: center;
|
|
30
|
+
align-items: center;
|
|
31
|
+
|
|
33
32
|
img {
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
33
|
+
height: 100px;
|
|
34
|
+
width: auto;
|
|
35
|
+
max-width: 250px;
|
|
36
|
+
}
|
|
37
|
+
.emblem {
|
|
38
|
+
svg {
|
|
39
|
+
height: auto;
|
|
40
|
+
width: 100%;
|
|
41
|
+
max-width: 250px;
|
|
42
|
+
padding-right: 15px;
|
|
43
|
+
}
|
|
37
44
|
}
|
|
38
45
|
}
|
|
39
46
|
.collapseButton {
|