Skip to content

Commit

Permalink
Remove !important
Browse files Browse the repository at this point in the history
Also do some automatic formatting
  • Loading branch information
JJ-8 committed Apr 5, 2022
1 parent 5d73f7b commit 5a21615
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions front/src/components/Task/TaskTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,16 @@ export default defineComponent({
col('title', { sortable: true }),
col('description', { label: 'description / flag' }),
col('players', { align: 'center' }),
col('open', { label: '', align: 'right', style: 'width:120px;max-width:120px;'}),
col('actions', { label: '', align: 'right', style: 'width:120px;max-width:120px;' }),
col('open', {
label: '',
align: 'right',
style: 'width:120px;max-width:120px;',
}),
col('actions', {
label: '',
align: 'right',
style: 'width:120px;max-width:120px;',
}),
];
const pagination = {
rowsPerPage: 0,
Expand All @@ -109,7 +117,8 @@ export default defineComponent({
</script>

<style scoped>
.q-table td, .q-table th {
white-space: normal !important;
.q-table td,
.q-table th {
white-space: normal;
}
</style>

0 comments on commit 5a21615

Please sign in to comment.