fix file view CSS so content fits horizontally and doesn't overscroll

This commit is contained in:
Iris Lightshard 2023-02-02 22:33:15 -07:00
parent 068bda4915
commit 8eea0d5bbc
Signed by: Iris Lightshard
GPG key ID: 3B7FBC22144E6398

View file

@ -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 {