blob: ace0cf059b65a1370f23cf04f1fa3100ef2e1600 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
@import '../shared/battle-view/constants';
@import '../shared/battle-view/menu-mixins';
@import 'constants';
.controlled
{
@include menu-panel();
right: 0;
top: $BELOW-MAIN-MENU;
bottom: $ABOVE-MESSAGE-BOARD;
width: $CONTROLLED-MENU-WIDTH;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
border-right: none;
display: flex;
flex-flow: column;
justify-content: space-between;
}
|