Compare commits

...

5 Commits

Author SHA1 Message Date
Corentin Thomasset
f60b95a63e chore(release): 2.2.1 2022-04-21 17:24:10 +02:00
Corentin Thomasset
ebf6695d25 fix(style): hard width for group labels 2022-04-21 13:30:12 +02:00
Corentin Thomasset
c4dabccdae fix(sider): missing href for link in footer 2022-04-19 13:20:55 +02:00
Corentin Thomasset
0a15892dde fix(head): added titles for non-tool pages 2022-04-19 13:19:44 +02:00
Corentin Thomasset
005ebfba31 fix(url-parser): cleaned weird margins on dark mode 2022-04-19 00:23:28 +02:00
9 changed files with 25 additions and 22 deletions

View File

@@ -2,6 +2,16 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
### [2.2.1](https://github.com/CorentinTh/it-tools/compare/v2.2.0...v2.2.1) (2022-04-21)
### Bug Fixes
* **head:** added titles for non-tool pages ([0a15892](https://github.com/CorentinTh/it-tools/commit/0a15892dde9852ff158a8fcb72d0ad6bae8bad02))
* **sider:** missing href for link in footer ([c4dabcc](https://github.com/CorentinTh/it-tools/commit/c4dabccdaeac9d03163ac2588599b000e4e74562))
* **style:** hard width for group labels ([ebf6695](https://github.com/CorentinTh/it-tools/commit/ebf6695d2533db6f37b24dc7d338f422c551c8cb))
* **url-parser:** cleaned weird margins on dark mode ([005ebfb](https://github.com/CorentinTh/it-tools/commit/005ebfba318ece1a9c04aefb737baed5d7aafb91))
## [2.2.0](https://github.com/CorentinTh/it-tools/compare/v2.1.0...v2.2.0) (2022-04-18)

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "it-tools",
"version": "2.2.0",
"version": "2.2.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "it-tools",
"version": "2.2.0",
"version": "2.2.1",
"dependencies": {
"@it-tools/bip39": "^0.0.4",
"@vicons/material": "^0.12.0",

View File

@@ -1,6 +1,6 @@
{
"name": "it-tools",
"version": "2.2.0",
"version": "2.2.1",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",

View File

@@ -112,6 +112,7 @@ const m = toolsByCategory.map(category => ({
target="_blank"
rel="noopener"
type="primary"
href="https://github.com/CorentinTh"
>
Corentin Thomasset
</n-button>

View File

@@ -1,5 +1,7 @@
<script setup lang="ts">
import { useHead } from '@vueuse/head';
useHead({title: 'Page not found - IT Tools'})
</script>
<template>

View File

@@ -1,4 +1,7 @@
<script setup lang="ts">
import { useHead } from '@vueuse/head';
useHead({title: 'About - IT Tools'})
</script>
<template>

View File

@@ -1,6 +1,9 @@
<script setup lang="ts">
import { toolsWithCategory } from '@/tools';
import ToolCard from '../components/ToolCard.vue';
import { useHead } from '@vueuse/head';
useHead({title: 'IT Tools'})
</script>
<template>

View File

@@ -37,8 +37,8 @@
style="margin: 5px 0;"
>
<n-input-group>
<n-input-group-label style="width: 200px;">
{{ name }}
<n-input-group-label style="flex: 0 0 170px;">
{{ name }}:
</n-input-group-label>
<input-copyable :value="fromDate(baseDate)" />
</n-input-group>

View File

@@ -97,22 +97,6 @@ const properties: {title: string, key: keyof URL}[] = [
text-align: right;
}
.n-input-group {
&:not(:first-child) > * {
::v-deep(.n-input__border), ::v-deep(.n-input-group-label__border) {
border-radius: 0;
border-top: none;
}
}
&:first-child > * {
::v-deep(.n-input__border), ::v-deep(.n-input-group-label__border) {
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
}
margin: 2px 0;
}
</style>