35 lines
466 B
CSS
35 lines
466 B
CSS
#settings > .system {
|
|
.version-info {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: row;
|
|
gap: 8px;
|
|
|
|
.whats-new {
|
|
font-size: smaller;
|
|
}
|
|
}
|
|
|
|
.links {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
list-style-type: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
|
|
li {
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
p {
|
|
text-align: center;
|
|
font-size: small;
|
|
margin: 0;
|
|
}
|
|
}
|