tidy a few things up before release;

master
Natalie Moore 3 years ago
parent a573abca55
commit d91af345c5

@ -1,3 +1,9 @@
# iden-calc-web
A web-based tool for calculating IDEN tables and frequencies.
A web-based tool for calculating Project 25 IDEN tables and frequencies. Runs entirely out of your browser!
[Check it out here!](https://dvmproject.io/iden-calc-web/)
## License
This project is licensed under the AGPLv3 License - see the [LICENSE.md](LICENSE.md) file for details. Use of this project is intended for amateur and/or educational use ONLY. Any other use is at the risk of user and all commercial purposes is strictly discouraged.

@ -13,6 +13,10 @@ import { RouterLink, RouterView } from 'vue-router'
font-size: 8pt;
}
.main-header {
text-align: center;
}
header {
line-height: 1.5;
max-height: 100vh;
@ -49,22 +53,11 @@ nav a:first-of-type {
}
@media (min-width: 1024px) {
header {
display: flex;
place-items: center;
padding-right: calc(var(--section-gap) / 2);
}
.logo {
margin: 0 2rem 0 0;
}
header .wrapper {
display: flex;
place-items: flex-start;
flex-wrap: wrap;
}
nav {
text-align: left;
margin-left: -1rem;

@ -27,9 +27,5 @@ a,
place-items: center;
}
#app {
display: grid;
grid-template-columns: 1fr 1fr;
padding: 0 2rem;
}
}

@ -3,7 +3,7 @@
<template>
<main>
<h3>IDEN Calculator</h3>
<h3 class="main-header">IDEN Calculator</h3>
<p>
Downlink Frequency (MHz): <input v-model="downlink" v-on:input="updateId"/><br/>
Base Frequency (MHz): <input v-model="base" v-on:input="updateId"/><br/>
@ -12,14 +12,14 @@
Channel ID (dec): <input v-model="id" v-on:input="updateDownlink"/> (0x{{ id.toString(16) }})<br/>
Uplink Frequency (MHz): {{ uplink }}MHz
</p>
<p class="footer-text">Copyright &copy; 2023 Natalie Moore and the <a href="https://github.com/dvmproject">DVMProject</a> team.</p>
<p class="footer-text">iden-calc-web V0.1 copyright &copy; 2023 Natalie Moore and the <a href="https://github.com/dvmproject">DVMProject</a> team.</p>
</main>
</template>
<script lang="ts">
import { defineComponent } from 'vue'
export default defineComponent({
name: 'CheckMR',
name: 'HomeView',
data() {
return {
id: 0 as number,

Loading…
Cancel
Save

Powered by TurnKey Linux.