Skip to content

Commit

Permalink
refactor: improve job logs styles
Browse files Browse the repository at this point in the history
  • Loading branch information
felixmosh committed Oct 25, 2022
1 parent 77226d5 commit 68ae166
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions packages/ui/src/components/JobCard/Details/Details.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,16 @@
.tabContent {
flex: 1;
max-width: calc(100% - 80px);
overflow-y: scroll;
position: relative;
overflow: auto;
position: relative;
}

.tabContent :global(.error) {
color: #d73a49;
}

.tabContent :global(.warn) {
color: orange;
color: orange;
}

.tabContent pre {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
}

.preWrapper {
padding: 40px 1rem 1rem;
padding: 40px 0.5rem 0.5rem;
max-height: 100%;
overflow: auto;
height: 330px;
Expand Down Expand Up @@ -40,11 +40,11 @@
.toolbar {
position: absolute;
top: 0;
left: 15px;
right: 15px;
left: 0;
right: 1rem;
background: rgba(255, 255, 255, 0.85);
backdrop-filter: blur(4px);
padding: 0 0 1rem;
padding: 0 0 0.5rem 0.5rem;
margin: 0;
list-style: none;
text-align: right;
Expand All @@ -66,12 +66,12 @@

.jobLogs:fullscreen .toolbar {
position: fixed;
padding: 1rem 0;
padding: 1rem;
}

.jobLogs:fullscreen .preWrapper {
height: 100%;
padding-top: 1rem !important;
padding: 40px 1rem 1rem;
}

.toolbar .searchBar {
Expand Down

0 comments on commit 68ae166

Please sign in to comment.