Demo update

pull/310/head
cagataycivici 2020-04-30 11:25:56 +03:00
parent 309808307f
commit 8890bd7655
2 changed files with 16 additions and 7 deletions

View File

@ -194,10 +194,11 @@ export default {
text-align: left;
}
.p-multiselect {
width: 100%;
}
.p-filter-column {
.p-multiselect, .p-dropdown, .p-inputtext {
width: 100%;
}
}
.p-dropdown-car-option {
img {
vertical-align: middle;

View File

@ -12,9 +12,9 @@
<div class="content-section implementation">
<DataTable :value="cars">
<template #header>
<div style="line-height:1.87em" class="clearfix">
<Button icon="pi pi-refresh" style="float: left"/>
<div class="table-header">
List of Cars
<Button icon="pi pi-refresh" />
</div>
</template>
<Column field="vin" header="Vin"></Column>
@ -122,4 +122,12 @@ export default {
'DataTableSubMenu': DataTableSubMenu
}
}
</script>
</script>
<style lang="scss" scoped>
.table-header {
display: flex;
align-items: center;
justify-content: space-between;
}
</style>