diff --git a/src/assets/layouts/tab.svg b/src/assets/layouts/tab.svg
index 432e632..e167540 100644
--- a/src/assets/layouts/tab.svg
+++ b/src/assets/layouts/tab.svg
@@ -1,17 +1,14 @@
-
-
-
\ No newline at end of file
+
diff --git a/src/components/category-details/CategoryDetails.module.scss b/src/components/category-details/CategoryDetails.module.scss
index 2f5a6bb..467c2f5 100644
--- a/src/components/category-details/CategoryDetails.module.scss
+++ b/src/components/category-details/CategoryDetails.module.scss
@@ -228,4 +228,27 @@
fill: var(--red);
}
}
-}
\ No newline at end of file
+}
+
+.addButton {
+ margin: 0 auto 2.5rem;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ width: calc(100% - 4rem);
+ border: 0.2rem dashed var(--orange);
+ border-radius: 3rem;
+ background-color: transparent;
+ height: 5rem;
+ color: var(--orange);
+ cursor: pointer;
+ font-weight: 600;
+ font-size: 1.3rem;
+
+ svg {
+ width: 2rem;
+ height: 2rem;
+ margin-right: 1rem;
+ fill: var(--orange);
+ }
+}
diff --git a/src/components/category-details/CategoryDetails.tsx b/src/components/category-details/CategoryDetails.tsx
index 6c4fe53..741d730 100644
--- a/src/components/category-details/CategoryDetails.tsx
+++ b/src/components/category-details/CategoryDetails.tsx
@@ -5,6 +5,7 @@ import queryString from 'query-string';
import { ReactComponent as ChevronLeft } from '../../assets/icons/chevron-left.svg';
import { ReactComponent as SearchIcon } from '../../assets/icons/bx-search-alt.svg';
import { ReactComponent as MoreIcon } from '../../assets/icons/more-alt.svg';
+import { ReactComponent as PlusCircledIcon } from '../../assets/icons/plus-circle.svg';
import { userProfileData } from "../home/Home";
import { CircularProgressbar } from "react-circular-progressbar";
@@ -48,6 +49,10 @@ export const CategoryDetails: React.FC = () => {
+
+
{ userProfileData.categories[Number(category_id)].shelves.map(shelf => {
diff --git a/src/components/tabs/Tabs.module.scss b/src/components/tabs/Tabs.module.scss
index b0fb6ce..ef63107 100644
--- a/src/components/tabs/Tabs.module.scss
+++ b/src/components/tabs/Tabs.module.scss
@@ -1,18 +1,20 @@
-$tab-width: 87vw;
+$tab-width: 38rem;
.tabs {
position: fixed;
- bottom: 10px;
+ bottom: -1rem;
width: $tab-width;
left: calc((100vw - #{$tab-width}) / 2);
display: flex;
- height: 5rem;
+ height: 9.3rem;
align-items: center;
justify-content: center;
z-index: 1;
background-image: url('../../assets/layouts/tab.svg');
- background-size: 100% 100%;
+ background-size: contain;
+ background-repeat: no-repeat;
background-position: center;
+ padding: 0 2.5rem;
button, a {
width: calc(#{$tab-width} / 5);
@@ -55,7 +57,7 @@ $tab-width: 87vw;
.utility {
width: calc(#{$tab-width} / 5);
- transform: translateY(-2.5rem);
+ transform: translateY(-3rem);
button {
box-shadow: 0px 0px 10px -4px var(--grey);