4 Commits

Author SHA1 Message Date
cfc9ac73b2 0.4.4
All checks were successful
Deploy to Production / deploy (push) Successful in 12s
2026-02-27 07:43:26 +00:00
e095c0190b style: restore danger styling for stop sniffing button 2026-02-27 07:43:12 +00:00
45342d456a 0.4.3
All checks were successful
Deploy to Production / deploy (push) Successful in 12s
2026-02-27 07:09:38 +00:00
3ea7f63b83 style: remove panel borders and backgrounds on mobile for cleaner look 2026-02-27 07:09:27 +00:00
6 changed files with 46 additions and 4 deletions

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "tools-app",
"version": "0.4.2",
"version": "0.4.4",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "tools-app",
"version": "0.4.2",
"version": "0.4.4",
"dependencies": {
"lucide-vue-next": "^0.575.0",
"vue": "^3.5.25",

View File

@@ -1,7 +1,7 @@
{
"name": "tools-app",
"private": true,
"version": "0.4.2",
"version": "0.4.4",
"type": "module",
"scripts": {
"dev": "vite",

View File

@@ -74,6 +74,13 @@ onUnmounted(() => {
padding-bottom: calc(2rem + 40px + env(safe-area-inset-bottom));
}
@media (max-width: 640px) {
.main-content {
padding: 1rem;
padding-bottom: calc(1rem + 40px + env(safe-area-inset-bottom));
}
}
@media (min-width: 768px) {
.app-body {
overflow: hidden;

View File

@@ -69,7 +69,7 @@ const clearText = () => {
</button>
<button
v-else
class="btn-neon active"
class="btn-neon danger"
@click="stopListening"
v-ripple
>

View File

@@ -300,6 +300,15 @@ onUnmounted(() => {
border-radius: 12px;
}
@media (max-width: 640px) {
.input-section {
background: transparent;
border: none;
border-radius: 0;
padding: 0;
}
}
.input-wrapper {
display: flex;
gap: 1rem;

View File

@@ -239,6 +239,16 @@ body {
box-shadow: var(--glass-shadow);
}
@media (max-width: 640px) {
.glass-panel:not(.modal-content) {
background: transparent;
backdrop-filter: none;
-webkit-backdrop-filter: none;
border: none;
box-shadow: none;
}
}
.btn-neon {
background: var(--button-bg);
border: 1px solid var(--button-border);
@@ -279,6 +289,22 @@ button:focus {
box-shadow: var(--button-active-shadow);
}
.btn-neon.danger {
background: rgba(239, 68, 68, 0.2);
border-color: rgba(239, 68, 68, 0.6);
color: #fee2e2;
}
.btn-neon.danger:hover {
background: rgba(239, 68, 68, 0.3);
border-color: rgba(239, 68, 68, 0.85);
box-shadow: 0 8px 20px rgba(239, 68, 68, 0.2);
}
:root[data-theme="light"] .btn-neon.danger {
color: #7f1d1d;
}
.icon-only {
padding: 8px;
border-radius: 50%;