mirror of
https://github.com/chiteroman/PlayIntegrityFix.git
synced 2025-01-18 19:12:38 +02:00
420ebda8bc
Add `action-on-webui` support to old version KernelSU and Apatch users. Old version Magisk users are able to use KSUWebUIStandalone to run `action.sh` through WebUI.
27 lines
508 B
CSS
27 lines
508 B
CSS
@font-face {
|
|
font-family: 'Mono';
|
|
src: url('assets/RobotoMono-Regular.ttf') format('truetype');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Mono';
|
|
padding-top: var(--window-inset-top);
|
|
padding-bottom: var(--window-inset-bottom);
|
|
}
|
|
|
|
.output {
|
|
font-size: 14px;
|
|
left: 10px;
|
|
width: calc(100vw - 20px);
|
|
white-space: nowrap;
|
|
word-break: break-all;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
body {
|
|
background-color: #121212;
|
|
color: #fff;
|
|
}
|
|
} |