Skip to content
Snippets Groups Projects
Commit 4afc5ad2 authored by Matěj Lang's avatar Matěj Lang
Browse files

Change positions of ContextMap and AveragesMap.

parent a9a289a5
No related branches found
No related tags found
No related merge requests found
......@@ -49,21 +49,23 @@ export default {
display: grid;
row-gap: 10px;
grid-template-rows: 50px 60px 100px;
grid-template-rows: 50px 100px 60px;
grid-template-columns: auto 50px 50px 50px 20px;
grid-template-areas:
'. . . .'
'averages-map averages-map averages-map averages-map'
'context-map context-map context-map context-map';
background-color: #ffffff;
padding-bottom: 10px;
}
.context-map {
grid-row: -3 / -2;
grid-column: 1 / -2;
grid-area: context-map;
}
.averages-map {
grid-row: -2 / -1;
grid-column: 1 / -2;
grid-area: averages-map;
}
.icon {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment