🔧 Enable debug mode and adjust responsive styles for better mobile layout

This commit is contained in:
2026-01-28 18:39:33 +00:00
parent 0f206a0158
commit 6dbeff1c4a

View File

@@ -391,8 +391,8 @@ const hasNextPage = ref(false);
// v2.1 Tournament Scope // v2.1 Tournament Scope
const tournamentScope = ref(ScopeType.USER); const tournamentScope = ref(ScopeType.USER);
// Debug mode (can be enabled via localStorage.setItem('DEBUG_CHALLONGE', 'true')) // Debug mode - enabled to see what's happening
const debugMode = ref(false); const debugMode = ref(true);
// Make apiKey reactive // Make apiKey reactive
const apiKey = computed(() => getApiKey()); const apiKey = computed(() => getApiKey());
@@ -1082,6 +1082,15 @@ h2 {
background: white; background: white;
border: 2px solid #e9ecef; border: 2px solid #e9ecef;
border-radius: 6px; border-radius: 6px;
flex-wrap: wrap;
}
@media (max-width: 480px) {
.oauth-status {
flex-direction: column;
align-items: flex-start;
gap: 0.75rem;
}
} }
.status-badge { .status-badge {
@@ -1451,10 +1460,6 @@ h2 {
font-size: 2rem; font-size: 2rem;
} }
.controls-grid {
grid-template-columns: 1fr;
}
.tournament-header { .tournament-header {
flex-direction: column; flex-direction: column;
align-items: flex-start; align-items: flex-start;
@@ -1469,6 +1474,10 @@ h2 {
height: 36px; height: 36px;
font-size: 1.1rem; font-size: 1.1rem;
} }
.btn {
width: 100%;
}
} }
.search-box { .search-box {