Fixed grid formating bug with matrix test

This commit is contained in:
2019-07-23 16:06:38 +01:00
parent 208d03a381
commit cae17ca21f
2 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -60,6 +60,6 @@ if __name__ == '__main__':
webview.create_window("BPLabs",
"http://127.0.0.1:23948/home",
width=1000, height=700, min_size=(1000, 500))
webview.start()
webview.start(debug=True)
+2
View File
@@ -67,10 +67,12 @@
}
.mat_grid {
/*
display: grid;
align-content: center;
grid-template-columns: repeat(5, 1fr);
grid-template-rows: repeat(10, 1fr);
*/
height: calc(90% - 56px);
}