diff --git a/src/components/FooterNavigation.vue b/src/components/FooterNavigation.vue index 8dd3468..700ddfb 100644 --- a/src/components/FooterNavigation.vue +++ b/src/components/FooterNavigation.vue @@ -27,7 +27,7 @@ .catch(() => {}) } const navs = [ - { label: 'Home', icon: 'home', size: 73, path: '/welcome', on: onHome }, + { label: 'Home', icon: 'home', size: 73, path: '/stylist/customer', on: onHome }, { label: 'Library', icon: 'library', size: 53, path: '/workshop/library' }, { label: 'Profile', icon: 'profile', size: 55, path: '' } ] diff --git a/src/components/MyList.vue b/src/components/MyList.vue new file mode 100644 index 0000000..da37082 --- /dev/null +++ b/src/components/MyList.vue @@ -0,0 +1,50 @@ + + + diff --git a/src/views/Workshop/creation.vue b/src/views/Workshop/creation.vue index 46c7a64..2c6dc49 100644 --- a/src/views/Workshop/creation.vue +++ b/src/views/Workshop/creation.vue @@ -1,7 +1,8 @@ @@ -175,19 +180,25 @@ } } } - > .continue-btn { - box-sizing: content-box; - font-family: satoshiRegular; - margin: 2.5rem 2.5rem 0 auto; - width: 35rem; - height: 7rem; - border-radius: 1.3rem; - background: #000; - font-weight: 400; - font-size: 4.2rem; - color: #fff; - &:active { - opacity: 0.7; + > .btns { + margin-top: 2.5rem; + width: 100%; + display: flex; + justify-content: center; + > button { + box-sizing: content-box; + font-family: satoshiRegular; + margin: 0 2rem; + width: 35rem; + height: 6rem; + border-radius: 1.3rem; + background: #000; + font-weight: 400; + font-size: 3.6rem; + color: #fff; + &:active { + opacity: 0.7; + } } } }