Use monospace font for build logs (#527)

This commit is contained in:
Galen Abell 2021-11-22 20:15:14 +01:00 committed by GitHub
parent 51617e7f86
commit ee67e9adb4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,5 @@
<template>
<div v-if="build" class="bg-gray-700 dark:bg-dark-gray-700 p-4">
<div v-if="build" class="font-mono bg-gray-700 dark:bg-dark-gray-700 p-4">
<div v-for="logLine in logLines" :key="logLine.pos" class="flex items-center">
<div class="text-gray-500 text-sm w-4">{{ (logLine.pos || 0) + 1 }}</div>
<!-- eslint-disable-next-line vue/no-v-html -->