Fixed grid formating bug with matrix test
This commit is contained in:
@@ -60,6 +60,6 @@ if __name__ == '__main__':
|
|||||||
webview.create_window("BPLabs",
|
webview.create_window("BPLabs",
|
||||||
"http://127.0.0.1:23948/home",
|
"http://127.0.0.1:23948/home",
|
||||||
width=1000, height=700, min_size=(1000, 500))
|
width=1000, height=700, min_size=(1000, 500))
|
||||||
webview.start()
|
webview.start(debug=True)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -67,10 +67,12 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.mat_grid {
|
.mat_grid {
|
||||||
|
/*
|
||||||
display: grid;
|
display: grid;
|
||||||
align-content: center;
|
align-content: center;
|
||||||
grid-template-columns: repeat(5, 1fr);
|
grid-template-columns: repeat(5, 1fr);
|
||||||
grid-template-rows: repeat(10, 1fr);
|
grid-template-rows: repeat(10, 1fr);
|
||||||
|
*/
|
||||||
height: calc(90% - 56px);
|
height: calc(90% - 56px);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user