Skip to content

Commit

Permalink
awesome wip split view
Browse files Browse the repository at this point in the history
  • Loading branch information
todti committed Feb 11, 2025
1 parent 42b1083 commit 8188230
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 4 deletions.
5 changes: 4 additions & 1 deletion packages/web-awesome/src/components/BaseLayout/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
}

.wrapper {
max-width: 920px;
//max-width: 920px;
width: 100%;
flex-direction: column;
margin: auto;
Expand All @@ -19,6 +19,9 @@
background: var(--bg-base-primary);
border-radius: 12px;
width: 100%;
overflow: hidden;
overflow-y: scroll;
height: 90vh;
}

.test-results {
Expand Down
4 changes: 4 additions & 0 deletions packages/web-awesome/src/components/ReportBody/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
display: flex;
flex-direction: column;
gap: 12px;
position: sticky;
top: 120px;
background: var(--bg-base-primary);
z-index: 1;
}

.headerRow {
Expand Down
5 changes: 5 additions & 0 deletions packages/web-awesome/src/components/ReportHeader/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@
justify-content: space-between;
padding: 24px;
align-items: flex-start;
position: sticky;
z-index: 1;
background: var(--bg-base-primary);
top: 0;
border-radius: 8px;
}

.report-wrapper {
Expand Down
8 changes: 5 additions & 3 deletions packages/web-awesome/src/components/SideBySide/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,20 @@
margin: 0;
overflow: hidden;
display: flex;
max-width: 1920px;
margin: auto;
}

.side-left {
padding: 8px;
padding: 8px 0 8px 8px;
overflow: auto;
flex: 0 0 auto;
//flex: 0 0 auto;
}

.side-right {
overflow: auto;
flex: 1 1 auto;
padding: 8px;
padding: 8px 8px 8px 0;
}

[dir="ltr"] {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
.test-result-info {
padding: 20px 24px 0;
position: sticky;
top: 0;
z-index: 1;
background: var(--bg-base-primary);
}

.test-result-info-data {
Expand Down

0 comments on commit 8188230

Please sign in to comment.