Compare commits

..

No commits in common. "080904ea6010fd7d98784989fee818eb63aac90f" and "29ea00b529af26800283737482ea766fbaf1ebe9" have entirely different histories.

2 changed files with 3 additions and 3 deletions

View file

@ -65,7 +65,7 @@
height: 50px; height: 50px;
overflow: hidden; overflow: hidden;
position: relative; position: relative;
margin: 0 auto; right: -10px
} }
.text-wrapper { .text-wrapper {

View file

@ -179,8 +179,8 @@
function pingClass(ms) { function pingClass(ms) {
if (ms === null || ms === undefined) return ''; if (ms === null || ms === undefined) return '';
if (ms < 100) return 'ping-good'; if (ms < 80) return 'ping-good';
if (ms < 500) return 'ping-warn'; if (ms < 200) return 'ping-warn';
return 'ping-bad'; return 'ping-bad';
} }