Skip to content

Commit

Permalink
fix: resolve overflow issue on mobile devices for monitor and web log…
Browse files Browse the repository at this point in the history
…s pages
  • Loading branch information
SkyBird233 committed Jul 25, 2024
1 parent 7ef76b0 commit c6c7503
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/pages/monitor/[hostname].vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<v-container style="height: 100%; font-family: monospace; background-color: black; color: white;">
<v-container class="overflow-auto" style="height: 100%; font-family: monospace; background-color: black; color: white; white-space: nowarp;">
<div v-for="line in lines" v-html="line"></div>
</v-container>
</template>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/web-logs/[name].vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<v-container style="height: 100%;font-family: monospace;">
<v-container class="overflow-auto" style="height: 100%;font-family: monospace; white-space: nowarp;">
<v-row v-if="loading">
<v-spacer></v-spacer>
<v-progress-circular indeterminate></v-progress-circular>
Expand Down

0 comments on commit c6c7503

Please sign in to comment.