This can track multiple characters, and tries to make as few as possible ESI calls. In the localstorage, we keep track of all the characters and their refresh-tokens. Access-tokens and skills are not stored in the localstorage, which means that every reload, this information is fetched from ESI again.
27 lines
334 B
CSS
27 lines
334 B
CSS
.main {
|
|
margin: 0 auto;
|
|
width: 1580px;
|
|
}
|
|
|
|
.content {
|
|
background-color: #111111;
|
|
border-radius: 25px;
|
|
display: flex;
|
|
margin-top: 10px;
|
|
justify-content: flex-end;
|
|
padding: 20px;
|
|
}
|
|
|
|
.selection {
|
|
flex: 1;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.fit {
|
|
}
|
|
|
|
.statistics {
|
|
margin-top: 50px;
|
|
position: relative;
|
|
}
|