imbric-theme 1.0.3 → 1.0.4
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.
@@ -151,11 +151,16 @@ export const DynamicTable = ({
|
|
151
151
|
) : null}
|
152
152
|
|
153
153
|
{isViewTitleTableSecundary ? (
|
154
|
-
<div className={getStyles('opFunctionBox1')}>
|
155
154
|
|
156
|
-
|
155
|
+
<>
|
156
|
+
<div className={getStyles('opFunctionBox1')}>
|
157
157
|
|
158
|
-
|
158
|
+
<Paragraph weight="semibold" size="md">{titleHeadingTableSecundary}</Paragraph>
|
159
|
+
|
160
|
+
</div>
|
161
|
+
|
162
|
+
<Horizontal size="sm" />
|
163
|
+
</>
|
159
164
|
) : null}
|
160
165
|
|
161
166
|
|
@@ -10,7 +10,7 @@ import styles from './Sidebar.module.css'
|
|
10
10
|
import Picture from '../../atoms/Picture'
|
11
11
|
import ItemMenu from '../../molecules/ItemMenu/ItemMenu'
|
12
12
|
|
13
|
-
export const Sidebar = ({ getStyles, menuCollapseView, options, isHrefLogo, isSrcLogoS, isSrcLogo }) => {
|
13
|
+
export const Sidebar = ({ getStyles, menuCollapseView, options, isHrefLogo, isSrcLogoS, isSrcLogo, spaceLogo }) => {
|
14
14
|
|
15
15
|
const router = useRouter()
|
16
16
|
|
@@ -28,7 +28,7 @@ export const Sidebar = ({ getStyles, menuCollapseView, options, isHrefLogo, isSr
|
|
28
28
|
|
29
29
|
<div className={getStyles('pro-sidebar-header')}>
|
30
30
|
|
31
|
-
<div className={getStyles('logotext')}>
|
31
|
+
<div style={{ padding: spaceLogo }} className={getStyles('logotext')}>
|
32
32
|
{/* small and big change using menuCollapseView state */}
|
33
33
|
{menuCollapseView ? <Picture isHref={isHrefLogo} src={router.basePath + isSrcLogoS} width={19}></Picture> : <Picture isHref={isHrefLogo} src={router.basePath + isSrcLogo} width={'max-content'}></Picture>}
|
34
34
|
</div>
|