1
0
mirror of https://github.com/lana-k/sqliteviz.git synced 2025-12-07 02:28:54 +08:00

Fix plotly settings panel overflow #14

This commit is contained in:
lana-k
2020-11-14 20:55:44 +01:00
parent c991691fcb
commit 20c1e3f1cc

View File

@@ -91,14 +91,17 @@ export default {
} }
} }
</script> </script>
<style scoped> <style scoped>
.chart-container { .chart-container {
height: calc(100% - 89px); height: calc(100% - 89px);
} }
.chart-warning { .chart-warning {
height: 40px; height: 40px;
line-height: 40px; line-height: 40px;
} }
.chart { .chart {
border-top: 1px solid var(--color-border); border-top: 1px solid var(--color-border);
min-height: 242px; min-height: 242px;
@@ -107,21 +110,4 @@ export default {
>>> .editor_controls .sidebar__item:before { >>> .editor_controls .sidebar__item:before {
width: 0; width: 0;
} }
>>> .sidebar {
width: 120px;
min-width: 120px;
max-width: 120px;
}
>>> .editor_controls__wrapper>.panel,
>>> .editor_controls .panel__empty {
width: 315px;
}
>>> .editor_controls .sidebar__group__title {
padding-left: 10px;
}
>>> .editor_controls .sidebar__item {
padding-left: 32px;
}
</style> </style>