Compare commits

...

1 Commits

Author SHA1 Message Date
Nybkox 04a640900a style(CellDataWidget): add max width/height + overflow 2025-02-18 11:14:49 +01:00
@@ -150,12 +150,17 @@
flex: 1;
display: flex;
flex-direction: column;
max-width: 100%;
max-height: 100%;
overflow: hidden;
}
.main {
display: flex;
flex: 1;
flex-direction: column;
max-width: 100%;
max-height: calc(100% - var(--dim-statusbar-height));
}
.toolbar {
@@ -170,5 +175,8 @@
display: flex;
flex: 1;
position: relative;
overflow: auto;
max-width: 100%;
max-height: 100%;
}
</style>