diff --git a/resources/css/buttons.css b/resources/css/buttons.css index 15d35b48..911b3857 100644 --- a/resources/css/buttons.css +++ b/resources/css/buttons.css @@ -1,12 +1,13 @@ .btn { - @apply px-3 py-2 uppercase no-underline text-sm rounded text-white; + @apply px-3 py-2 uppercase no-underline text-sm text-white items-center justify-center bg-primary-700 rounded; svg { } &.btn-sm { - @apply text-xs !important; + @apply text-xs w-6 h-6 px-1 py-1; svg { + @apply w-3 h-3 text-primary-100 flex-none; } } &.btn-primary { @@ -15,6 +16,18 @@ @apply bg-primary-500; } } + &.btn-warning { + @apply bg-yellow-700; + &:hover { + @apply bg-yellow-500; + } + } + &.btn-info { + @apply bg-blue-700; + &:hover { + @apply bg-blue-500; + } + } &.btn-danger { @apply bg-red-700; &:hover { diff --git a/resources/img/sprite.svg b/resources/img/sprite.svg index 84411f59..bcb3dea7 100644 --- a/resources/img/sprite.svg +++ b/resources/img/sprite.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/img/svg/money.svg b/resources/img/svg/money.svg new file mode 100644 index 00000000..cc3475ca --- /dev/null +++ b/resources/img/svg/money.svg @@ -0,0 +1,8 @@ + + diff --git a/resources/img/svg/pencil.svg b/resources/img/svg/pencil.svg new file mode 100644 index 00000000..090de5f7 --- /dev/null +++ b/resources/img/svg/pencil.svg @@ -0,0 +1,18 @@ + + diff --git a/resources/js/views/member/Index.vue b/resources/js/views/member/Index.vue index ac9c2541..6cbf78a7 100644 --- a/resources/js/views/member/Index.vue +++ b/resources/js/views/member/Index.vue @@ -13,9 +13,10 @@