@cashub/ui 0.29.1 → 0.29.2
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/layout/AsideHeader.jsx +2 -2
- package/layout/Layout.jsx +1 -1
- package/layout/Sidebar.jsx +3 -3
- package/package.json +1 -1
package/layout/AsideHeader.jsx
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import styled from 'styled-components';
|
|
2
|
-
import headerStyle from '
|
|
3
|
-
import media from '
|
|
2
|
+
import headerStyle from '../styles/config/header.style';
|
|
3
|
+
import media from '../styles/mixin/media';
|
|
4
4
|
import Logo from './Logo';
|
|
5
5
|
import MenuIcon from './MenuIcon';
|
|
6
6
|
|
package/layout/Layout.jsx
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { useEffect, useState } from 'react';
|
|
2
2
|
import styled from 'styled-components';
|
|
3
|
-
import { ScrollToTopButton } from '
|
|
3
|
+
import { ScrollToTopButton } from '../button';
|
|
4
4
|
import Header from './Header';
|
|
5
5
|
import Container from './Container';
|
|
6
6
|
import Footer from './Footer';
|
package/layout/Sidebar.jsx
CHANGED
|
@@ -3,9 +3,9 @@ import { FaCaretRight } from 'react-icons/fa';
|
|
|
3
3
|
import { Link, useLocation } from 'react-router-dom';
|
|
4
4
|
import { useTranslation } from 'react-i18next';
|
|
5
5
|
import styled, { css } from 'styled-components';
|
|
6
|
-
import headerStyle from '
|
|
7
|
-
import media from '
|
|
8
|
-
import scrollbar from '
|
|
6
|
+
import headerStyle from '../styles/config/header.style';
|
|
7
|
+
import media from '../styles/mixin/media';
|
|
8
|
+
import scrollbar from '../styles/mixin/scrollbar';
|
|
9
9
|
import Aside from './Aside';
|
|
10
10
|
import AsideHeader from './AsideHeader';
|
|
11
11
|
|