blob: 0bf5f4240331f4086292a38c95bbb334ba8064a4 (
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
|
.app {
}
.header {
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
font-size: var(--font-xxl);
width: auto;
margin: auto;
}
.iconRow {
display: flex;
flex-flow: row nowrap;
align-items: center;
margin-bottom: -10px;
}
.iconRow img {
width: auto;
height: 40px;
margin-right: 10px;
}
.header small {
font-style: italic;
font-size: var(--font-s);
font-weight: 400;
}
.error {
color: var(--red)
}
|