Сделала кнопку добавления клиента

This commit is contained in:
Daria Golova
2022-10-19 14:18:18 +03:00
parent fa04d964df
commit 0cd25bdb91
3 changed files with 32 additions and 1 deletions

View File

@@ -0,0 +1,28 @@
<template lang="pug">
button.add-client-button.flex.items-center.justify-center
.icon-wrapper.flex.items-center.justify-center.icon-plus.text-xsm
.icon-wrapper.flex.items-center.justify-center.icon-person.text-m
</template>
<script>
export default {
name: "HeaderAddClientButton",
};
</script>
<style lang="sass" scoped>
.add-client-button
width: 80px
height: 40px
background-color: var(--btn-blue-color)
color: var(--default-white)
border-radius: 4px
&:hover
background-color: var(--btn-blue-color-4)
&:active
background-color: var(--font-dark-blue-color)
.icon-wrapper
width: 24px
height: 24px
</style>