blob: df4c69aa11181376b989d33e22d089cc7d9de779 (
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
32
33
34
35
|
@import "theme";
* {
font-family: $defFont
}
body {
background-color: $defBG;
color: $defFG;
margin: 0;
}
.root-content {
width: 95%;
margin: auto;
margin-bottom: 3rem;
}
.BillingPageFlex {
display: flex;
flex-direction: row;
justify-content: space-between;
height: 70vh;
}
.BillingPageFlex div {
box-sizing: border-box;
border: 1px solid pink;
}
@media only screen and (max-device-width: 480px) {
.root-content {
width: 95%;
}
}
|