feat(ui): enhance charging stations list structure
[e-mobility-charging-stations-simulator.git] / ui / web / src / components / charging-stations / CSInfoModal.vue
index 05b4b6bdbbd0f6691215c4dc270e92a1e1f9a03b..9e0d1cd8d55386c12a88eaddb87a5f5140751614 100644 (file)
@@ -1,6 +1,6 @@
 <template>
   <Modal :visibility="props.isVisible">
-    <div class="card-info">vendor: {{ props.stationInfo.chargePointVendor }}</div>
+    <div>vendor: {{ props.stationInfo.chargePointVendor }}</div>
   </Modal>
 </template>
 
@@ -13,9 +13,3 @@ const props = defineProps<{
   isVisible: boolean
 }>()
 </script>
-
-<style>
-.card-info {
-  background-color: white;
-}
-</style>