Spaces:
Paused
Paused
Zhen Ye commited on
Commit ·
7eaf762
1
Parent(s): 624478a
Reduce left sidebar by 50% and move track cards to right of video
Browse files- frontend/style.css +18 -6
frontend/style.css
CHANGED
|
@@ -74,8 +74,8 @@ header {
|
|
| 74 |
.workspace {
|
| 75 |
flex: 1;
|
| 76 |
display: grid;
|
| 77 |
-
grid-template-columns:
|
| 78 |
-
/* Fixed sidebar width */
|
| 79 |
gap: 12px;
|
| 80 |
padding: 12px;
|
| 81 |
min-height: 0;
|
|
@@ -707,15 +707,26 @@ input[type="number"]:focus {
|
|
| 707 |
|
| 708 |
.frame-grid {
|
| 709 |
display: grid;
|
| 710 |
-
grid-template-columns:
|
| 711 |
grid-template-rows: auto auto auto;
|
| 712 |
gap: 12px;
|
| 713 |
min-height: 0;
|
| 714 |
}
|
| 715 |
|
| 716 |
-
/* Video panel
|
| 717 |
.frame-grid .panel-monitor {
|
| 718 |
-
grid-column: 1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 719 |
}
|
| 720 |
|
| 721 |
.intel {
|
|
@@ -944,7 +955,8 @@ input[type="number"]:focus {
|
|
| 944 |
========================================= */
|
| 945 |
|
| 946 |
.panel-chat {
|
| 947 |
-
grid-column: 1
|
|
|
|
| 948 |
max-height: 280px;
|
| 949 |
display: flex;
|
| 950 |
flex-direction: column;
|
|
|
|
| 74 |
.workspace {
|
| 75 |
flex: 1;
|
| 76 |
display: grid;
|
| 77 |
+
grid-template-columns: 270px 1fr;
|
| 78 |
+
/* Fixed sidebar width - reduced by 50% */
|
| 79 |
gap: 12px;
|
| 80 |
padding: 12px;
|
| 81 |
min-height: 0;
|
|
|
|
| 707 |
|
| 708 |
.frame-grid {
|
| 709 |
display: grid;
|
| 710 |
+
grid-template-columns: 1.6fr 0.9fr;
|
| 711 |
grid-template-rows: auto auto auto;
|
| 712 |
gap: 12px;
|
| 713 |
min-height: 0;
|
| 714 |
}
|
| 715 |
|
| 716 |
+
/* Video panel on left, track cards on right */
|
| 717 |
.frame-grid .panel-monitor {
|
| 718 |
+
grid-column: 1;
|
| 719 |
+
grid-row: 1 / 3;
|
| 720 |
+
}
|
| 721 |
+
|
| 722 |
+
.frame-grid .panel-summary {
|
| 723 |
+
grid-column: 2;
|
| 724 |
+
grid-row: 1;
|
| 725 |
+
}
|
| 726 |
+
|
| 727 |
+
.frame-grid .panel-features {
|
| 728 |
+
grid-column: 2;
|
| 729 |
+
grid-row: 2;
|
| 730 |
}
|
| 731 |
|
| 732 |
.intel {
|
|
|
|
| 955 |
========================================= */
|
| 956 |
|
| 957 |
.panel-chat {
|
| 958 |
+
grid-column: 1;
|
| 959 |
+
grid-row: 3;
|
| 960 |
max-height: 280px;
|
| 961 |
display: flex;
|
| 962 |
flex-direction: column;
|