Use ID selector on #action-container for higher specificity (1-1-0)
over Container.vue scoped .container (0-2-0), add flex: none to prevent
growing. Add min-width: 0 and remove width: 100% on charging stations
container to allow flex shrink below table content width.
</script>
<style scoped>
-.action-container {
+#action-container {
+ flex: none;
min-width: max-content;
height: fit-content;
display: flex;
<style scoped>
.charging-stations-container {
+ min-width: 0;
height: fit-content;
- width: 100%;
display: flex;
flex-direction: column;
}