We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9759eb7 commit c47b244Copy full SHA for c47b244
1 file changed
src/workbench/plans_panel/plans-panel.css
@@ -5,12 +5,23 @@
5
}
6
7
.blx-plans-tabs {
8
- overflow-x: auto;
9
- scrollbar-width: thin;
+ display: grid;
+ grid-template-columns: repeat(4, minmax(0, 1fr));
10
+ gap: 0.3rem;
11
+ overflow: visible;
12
13
14
.blx-plans-tabs .blx-sr-tab {
- flex: 0 0 auto;
15
+ justify-content: center;
16
+ min-width: 0;
17
+ padding-inline: 0.45rem;
18
+}
19
+
20
+.blx-plans-tabs .blx-sr-tab > span:not(.blx-sr-tab__count) {
21
22
+ overflow: hidden;
23
+ text-overflow: ellipsis;
24
+ white-space: nowrap;
25
26
27
.blx-sr-card__badge[data-kind="plan"] {
0 commit comments