Skip to content

Commit

Permalink
Update tags.html
Browse files Browse the repository at this point in the history
  • Loading branch information
m4rc1e authored Aug 27, 2024
1 parent b0edfba commit 422e8cb
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions tags.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,16 @@ <h1>Google Fonts Tagger</h1>
<div class="panel-tile">
<form @submit.prevent="AddFamily">
<label>Add family:</label>
<input v-model="newFamily" required placeholder="Family Name">
<input list="items" v-model="newFamily" required placeholder="Family Name">
<datalist id="items">
<option v-for="family in uniqueFamilies" :value="family">
</datalist>
<input v-model="newWeight" required placeholder="Score">
<button>Add</button>
</form>
</div>
<div style="border: 0.1px solid rgb(161, 161, 161); margin-bottom: 10pt; margin-top: 10pt;">

</div>
<div class="panel-tile">
<button @click="prCSV">Open Pull Request</button>
Expand Down Expand Up @@ -245,7 +251,7 @@ <h1>Google Fonts Tagger</h1>
src: url(https://cdn.jsdelivr.net/gh/adobe-fonts/adobe-notdef/AND-Regular.ttf);
}
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
font-family: "Roboto", Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: left;
Expand Down

0 comments on commit 422e8cb

Please sign in to comment.