diff --git a/src/assets/css/style.css b/src/assets/css/style.css
index 6d435a6..469c74a 100644
--- a/src/assets/css/style.css
+++ b/src/assets/css/style.css
@@ -71,6 +71,7 @@ html:root {
padding: 0 2rem;
min-height: fit-content;
}
+button.general,
.general_button {
border-radius: 0.7rem;
border: 3px solid #000;
@@ -79,11 +80,13 @@ html:root {
color: #fff;
font-family: satoshiMedium;
}
+button.general.smail,
.general_button.smail {
font-size: 3.6rem;
width: 24.6rem;
line-height: 6.7rem;
}
+button.general.big,
.general_button.big {
font-size: 3.8rem;
line-height: 7.4rem;
diff --git a/src/assets/css/style.less b/src/assets/css/style.less
index 92e7cff..5e6617f 100644
--- a/src/assets/css/style.less
+++ b/src/assets/css/style.less
@@ -83,6 +83,7 @@ html:root {
min-height: fit-content;
}
+button.general,
.general_button{
border-radius: .7rem;
border: 3px solid #000;
diff --git a/src/assets/icons/profile.svg b/src/assets/icons/profile.svg
new file mode 100644
index 0000000..acad237
--- /dev/null
+++ b/src/assets/icons/profile.svg
@@ -0,0 +1,9 @@
+
diff --git a/src/components/FooterNavigation.vue b/src/components/FooterNavigation.vue
index 56fc7c4..0f63833 100644
--- a/src/components/FooterNavigation.vue
+++ b/src/components/FooterNavigation.vue
@@ -33,7 +33,7 @@
const navs = [
{ label: 'Home', icon: 'home', size: 73, path: '/homeNav' },
{ label: 'Library', icon: 'library', size: 53, path: '/workshop/library' },
- { label: 'Profile', icon: 'profile', size: 55, path: '/workshop/profile' }
+ // { label: 'Profile', icon: 'profile', size: 55, path: '/workshop/profile' }
]
const onNavClick = (nav) => {
if (currentRoute.value !== nav.path) nav.on ? nav.on(nav) : nav.path && router.push(nav.path)
@@ -49,10 +49,10 @@
@click="onNavClick(nav)"
>
@@ -32,7 +29,6 @@