1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| .mediateList {
| position: relative;
| margin: @pageMargin;
|
| &-submit {
| position: fixed;
| bottom: 0;
| left: 0;
| right: 0;
| padding: 12px @pageAboutMargin;
| background-color: #ffffff;
| box-shadow: 4px 0px 5px 0px rgba(0, 0, 0, 0.25);
| display: flex;
| justify-content: space-between;
| }
|
| &-subtitle {
| color: @text-color-secondary;
| }
| }
|
|