Skip to content

Commit

Permalink
Re-order buttons on project row. Add padding to delete button.
Browse files Browse the repository at this point in the history
  • Loading branch information
mgdaily committed Feb 21, 2024
1 parent 43e4b82 commit f2f0299
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions src/components/projects/UserProjectsTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@
>
<button
class="button is-info is-small mr-3"
@click="getProject(props.row.project_name, props.row.created_at)"
@click="inspectProject(props.row.project_name, props.row.created_at)"
>
modify
inspect
</button>
<button
class="button is-info is-small mr-3"
Expand All @@ -94,12 +94,12 @@
</button>
<button
class="button is-info is-small mr-3"
@click="inspectProject(props.row.project_name, props.row.created_at)"
@click="getProject(props.row.project_name, props.row.created_at)"
>
inspect
modify
</button>
<button
class="button is-danger is-small"
class="button is-danger is-small delete-button"
@click="$store.dispatch('user_data/deleteProject', {'project_name': props.row.project_name, 'created_at': props.row.created_at})"
>
<span class="icon is-small ">
Expand Down Expand Up @@ -306,6 +306,10 @@ export default {
justify-content: space-between;
}
.delete-button {
margin-left: 18%;
}
</style>

<style lang="scss">
Expand Down

0 comments on commit f2f0299

Please sign in to comment.