use the scroller class for LogContainer

This commit is contained in:
beckerinj
2023-02-02 16:14:11 -05:00
parent e9c3646450
commit 14c6bd00a8
2 changed files with 1 additions and 2 deletions

View File

@@ -52,7 +52,7 @@ export default UpdateMenu;
const UpdateMenuContent: Component<{ update: UpdateType }> = (p) => {
return (
<Grid class={s.LogContainer}>
<Grid class={combineClasses(s.LogContainer, "scroller")}>
<UpdateSummary update={p.update} />
<UpdateLogs update={p.update} />
</Grid>

View File

@@ -41,7 +41,6 @@
.LogContainer {
max-height: 80vh;
overflow: scroll;
}
.Log {