Skip to content

Commit

Permalink
style: dont show console timestamps on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
cadriel committed Nov 6, 2020
1 parent 436967c commit afdb98e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/widgets/ConsoleWidget.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="console-wrapper">
<v-card outlined color="tertiary" class="console pa-1">
<v-layout v-for="(item, index) in consoleItems" :key="index" class="console-item">
<span class="grey--text text--darken-2 mr-3">{{ getTime(item.time) }} </span>
<span class="grey--text text--darken-2 mr-3 d-none d-sm-block">{{ getTime(item.time) }} </span>
<span :class="consoleClass(item)" v-html="item.message"></span>
</v-layout>
</v-card>
Expand Down

0 comments on commit afdb98e

Please sign in to comment.