use roboto mono nerd font for nomadnet browser

This commit is contained in:
liamcottle 2024-12-12 23:28:28 +13:00
commit 22654b129c
4 changed files with 12 additions and 0 deletions

View file

@ -100,6 +100,11 @@
<style>
pre {
font-family: Roboto Mono Nerd Font, monospace;
line-height: normal;
}
pre.text-wrap > div {
display: flex;
white-space: pre;

View file

@ -0,0 +1,6 @@
@font-face {
font-family: 'Roboto Mono Nerd Font';
src: url('./RobotoMonoNerdFont-Regular.ttf') format('truetype');
font-weight: 400;
font-style: normal;
}

View file

@ -1,6 +1,7 @@
import { createApp, defineAsyncComponent } from 'vue';
import { createRouter, createWebHashHistory } from 'vue-router';
import vClickOutside from "click-outside-vue3";
import "./fonts/RobotoMonoNerdFont/font.css";
import App from './components/App.vue';