blob: 93d6c5ebaf665d34607499269bcbacee2576a771 (
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
36
|
@import "../../styles/theme";
.HomePageMenu {
/*border: 1px solid green;*/
min-width: 20rem;
width: 50%;
display: grid;
grid-template-columns: auto auto;
}
.HomePageMenu .menuItem {
text-align: center;
text-decoration: none;
font-size: $fontSize2;
color: $defFG;
}
.HomePageMenu .menuItem:hover {
color: $altFG;
}
.InvoiceInfoMenu {
width: 60%;
}
.PDFViewer {
height: 95%;
width: 95%;
position: fixed;
top: 0; bottom: 0;
left: 0; right: 0;
margin: auto;
z-index: 3;
}
|