diff --git a/src/App.js b/src/App.js index 7bc1de4..8a999e6 100644 --- a/src/App.js +++ b/src/App.js @@ -9,6 +9,7 @@ import config from "./config"; import moment from 'moment'; import { setLoading } from "./store/slices/loadingSlice"; import { setProfile } from "./store/slices/profileSlice"; +import Details from "./components/Details"; function App() { const dispatch = useDispatch(); @@ -110,6 +111,7 @@ function App() { ) } +
@@ -203,100 +205,6 @@ function App() {
-
-
-
-

-

- -
-
- -
-
-
-
-
- -
-
- -
-
- -
-
- - -
-
-
-
- - - - -
-
-
-
- - - - -
-
) } diff --git a/src/components/Details.js b/src/components/Details.js new file mode 100644 index 0000000..1864891 --- /dev/null +++ b/src/components/Details.js @@ -0,0 +1,42 @@ +const Details = () => { + return ( +
+
+ +
+
+ + ) +} + +export default Details; \ No newline at end of file diff --git a/src/index.scss b/src/index.scss index ecd87ad..84de713 100644 --- a/src/index.scss +++ b/src/index.scss @@ -45,7 +45,7 @@ html:not([data-theme="luxury"]), html:not([data-theme="dracula"]) { @include meta.load-css("node_modules/antd/dist/antd.css", $with: null); - p { + p, ul { margin-bottom: 0; } } @@ -58,7 +58,7 @@ html[data-theme="luxury"], html[data-theme="dracula"] { @include meta.load-css("node_modules/antd/dist/antd.dark.css", $with: null); - p { + p, ul { margin-bottom: 0; } }