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; text-align: left;
} }
.p-multiselect { .p-filter-column {
.p-multiselect, .p-dropdown, .p-inputtext {
width: 100%; width: 100%;
}
} }
.p-dropdown-car-option { .p-dropdown-car-option {
img { img {
vertical-align: middle; vertical-align: middle;

View File

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