blob: b88095cffac28a31aae924ec35ca396d97c642b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
.game-creation-wizard {
display: flex;
flex-direction: column;
justify-content: center;
}
.game-creation-wizard .row {
margin-left: 0;
margin-right: 0;
}
.game-creation-wizard .fancy-box {
width: 75vw;
height: 75vh;
display: flex;
flex-direction: column;
}
.game-creation-wizard .fancy-content {
flex-grow: 1;
overflow: auto;
}
.panel-choose-map {
height: 100%;
}
.panel-choose-map .map-list {
border: 1px solid gray;
height: 100%;
}
|