Skip to content
This repository was archived by the owner on Jul 30, 2025. It is now read-only.

Commit 74f9d0e

Browse files
committed
fix(plugins/plugin-client-common): make Left split a bit wider
1 parent 147b18b commit 74f9d0e

File tree

1 file changed

+16
-16
lines changed
  • plugins/plugin-client-common/web/scss/components/Terminal/Layout

1 file changed

+16
-16
lines changed

plugins/plugin-client-common/web/scss/components/Terminal/Layout/LeftStrip.scss

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@
2121
@include Scrollback {
2222
@include LeftStrip {
2323
/**
24-
* Normally, this will have a min-width: 0, which allows the
25-
* flex box to adjust to reduced width. However, the
26-
* RightStrip is narrow, and so we probably would rather have
27-
* horizontal overflow than wrapping.
28-
*/
24+
* Normally, this will have a min-width: 0, which allows the flex
25+
* box to adjust to reduced width. However, the LeftStrip is
26+
* narrow, and so we probably would rather have horizontal
27+
* overflow than wrapping.
28+
*/
2929
@include WrapNormally;
3030
}
3131
}
@@ -35,14 +35,14 @@
3535
@include TopLevelTab {
3636
@include HasOnlyLeftStrip {
3737
@include Split(2) {
38-
@include Columns(4);
39-
grid-template-areas: 'L1 T1 T1 T1';
38+
@include Columns(3);
39+
grid-template-areas: 'L1 T1 T1';
4040
}
4141

4242
@include Split(3) {
4343
@include Rows(1);
44-
@include Columns(5);
45-
grid-template-areas: 'L1 T1 T1 T2 T2';
44+
@include Columns(3);
45+
grid-template-areas: 'L1 T1 T2';
4646
}
4747
}
4848
}
@@ -53,22 +53,22 @@
5353
@include HasOnlyLeftStrip {
5454
@include Split(2) {
5555
@include Rows(1);
56-
@include Columns(5);
57-
grid-template-areas: 'L1 T1 T1 T1 T1';
56+
@include Columns(4);
57+
grid-template-areas: 'L1 T1 T1 T1';
5858
}
5959

6060
@include Split(3) {
6161
@include Rows(1);
62-
@include Columns(5);
63-
grid-template-areas: 'L1 T1 T1 T2 T2';
62+
@include Columns(8);
63+
grid-template-areas: 'L1 L1 T1 T1 T1 T2 T2 T2';
6464
}
6565

6666
@include Split(4) {
6767
@include Rows(2);
68-
@include Columns(9);
68+
@include Columns(8);
6969
grid-template-areas:
70-
'L1 L1 T1 T1 T1 T1 T2 T2 T2'
71-
'L1 L1 T1 T1 T1 T1 T3 T3 T3';
70+
'L1 L1 T1 T1 T1 T2 T2 T2'
71+
'L1 L1 T1 T1 T1 T3 T3 T3';
7272
}
7373

7474
@include Split(5) {

0 commit comments

Comments
 (0)