web frontend for git (tangled's grandpa)
7
fork

Configure Feed

Select the types of activity you want to include in your feed.

css: scroll file content x-axis only

- we don't need any overflow scrolling for the y-axis.
- set overflow-x to 'auto' so that the scroll bar only shows
when the content does overflow.

authored by

zak and committed by
Anirudh Oppiliappan
e5d35c4d 42bce066

+2 -1
+2 -1
static/style.css
··· 235 235 236 236 .file-content { 237 237 background: var(--light-gray); 238 - overflow: scroll; 238 + overflow-y: hidden; 239 + overflow-x: auto; 239 240 } 240 241 241 242 .diff-type {