Skip to content

Commit

Permalink
fixup! fix: dividing line between jobs and vehicles
Browse files Browse the repository at this point in the history
  • Loading branch information
Seli0303 committed Jul 29, 2024
1 parent 1d3f01a commit 10656c7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
{{ $t('optimization.addFromMap') + $t('optimization.vehicle') }}
</v-btn>
</div>
<vehicle-list :vehicles="vehicles"></vehicle-list>
<vehicle-list class="content-list" :vehicles="vehicles"></vehicle-list>
<v-layout row class="form-actions-btns">
<v-tooltip bottom style="float: right">
<template v-slot:activator="{ on }">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div class="vehicle-inputs">
<v-expansion-panel class="content-list" :value="vehicleExtended" :expand="true">
<v-expansion-panel class="no-shadow" :value="vehicleExtended" :expand="true">
<v-expansion-panel-content style="background: transparent;" v-for="(v, i) in vehicles" :key="i">
<div slot="header" style="padding-bottom: 0;"><v-icon :color="vehicleColors(v.id)" style="padding: 0 5px 0 0">{{vehicleIcon(v.profile)}}</v-icon><b>Vehicle {{v.id}} ({{v.profile}})</b></div>
<v-card-text>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
.content-list {
.no-shadow {
box-shadow: none;
border-bottom: 2px solid #c62828;
margin: 0 0 5px 0;
}

0 comments on commit 10656c7

Please sign in to comment.