fix file view CSS so content fits horizontally and doesn't overscroll
This commit is contained in:
parent
068bda4915
commit
8eea0d5bbc
1 changed files with 7 additions and 1 deletions
|
@ -288,11 +288,17 @@ a:hover {
|
|||
margin-top: 0.5rem;
|
||||
}
|
||||
|
||||
tr {
|
||||
display:flex;
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
.file-content {
|
||||
background: var(--light-gray);
|
||||
overflow-y: hidden;
|
||||
overflow-x: auto;
|
||||
display: block;
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.diff-type {
|
||||
|
|
Loading…
Reference in a new issue