Set .material-symbols-outlined font-size to medium

This commit is contained in:
Dave Gallant
2024-01-29 19:48:18 -05:00
parent fa70bc0ea4
commit 35bbfbab59
2 changed files with 7 additions and 3 deletions

View File

@@ -5,7 +5,7 @@ import Loading from "vue-loading-overlay";
import GithubButton from "vue-github-button"; import GithubButton from "vue-github-button";
import { install } from "@github/hotkey"; import { install } from "@github/hotkey";
import 'vue-loading-overlay/dist/css/index.css'; import "vue-loading-overlay/dist/css/index.css";
export default { export default {
data() { data() {
@@ -130,7 +130,7 @@ export default {
<link rel="shortcut icon" type="image/png" href="/favicon.png" /> <link rel="shortcut icon" type="image/png" href="/favicon.png" />
<body> <body>
<input <input
class="form-control" class="form-control"
type="text" type="text"
id="filter" id="filter"
placeholder="Filter" placeholder="Filter"
@@ -161,7 +161,7 @@ export default {
<loading <loading
v-model:active="isLoading" v-model:active="isLoading"
color="#ccc" color="#ccc"
opacity=0 opacity="0"
loader="bars" loader="bars"
:is-full-page="false" :is-full-page="false"
> >

View File

@@ -62,3 +62,7 @@ footer {
background-size: contain; background-size: contain;
background-position-y: bottom; background-position-y: bottom;
} }
.material-symbols-outlined {
font-size: medium;
}