4 Commits

Author SHA1 Message Date
98d76e3a35 0.3.4
All checks were successful
Deploy to Production / deploy (push) Successful in 13s
2026-02-27 04:44:34 +00:00
cc7e80a807 feat: improve mobile layout for Password Generator button 2026-02-27 04:43:58 +00:00
1f5500f7d7 0.3.3
All checks were successful
Deploy to Production / deploy (push) Successful in 13s
2026-02-27 04:37:29 +00:00
d404370027 fix: adjust layout for Password Generator and Clipboard Sniffer on smaller screens 2026-02-27 04:37:21 +00:00
3 changed files with 30 additions and 6 deletions

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "tools-app",
"version": "0.3.2",
"version": "0.3.4",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "tools-app",
"version": "0.3.2",
"version": "0.3.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.3.2",
"version": "0.3.4",
"type": "module",
"scripts": {
"dev": "vite",

View File

@@ -75,7 +75,7 @@ const generatePasswords = () => {
<div class="tool-panel">
<div class="panel-header">
<h2 class="tool-title">Bulk Passwords Generator</h2>
<div class="action-area">
<div class="action-area desktop-only">
<button class="btn-neon generate-btn" @click="generatePasswords" v-ripple>
Generate
</button>
@@ -131,6 +131,12 @@ const generatePasswords = () => {
</div>
</div>
<div class="mobile-only" style="margin-top: 1rem; width: 100%;">
<button class="btn-neon generate-btn" @click="generatePasswords" v-ripple style="width: 100%;">
Generate
</button>
</div>
<div class="result-area" :style="{ height: textareaHeight }">
<textarea
class="tool-textarea"
@@ -189,9 +195,10 @@ const generatePasswords = () => {
.inputs-group {
display: flex;
gap: 2rem;
gap: 1rem;
flex: 1;
min-width: 300px;
min-width: 200px;
flex-wrap: wrap;
}
.input-wrapper {
@@ -199,6 +206,7 @@ const generatePasswords = () => {
flex-direction: column;
gap: 0.5rem;
flex: 1;
min-width: 140px;
}
.checkbox-label {
@@ -351,6 +359,14 @@ const generatePasswords = () => {
letter-spacing: 1px;
}
.desktop-only {
display: block;
}
.mobile-only {
display: none;
}
@media (max-width: 768px) {
.options-grid {
flex-direction: column;
@@ -370,5 +386,13 @@ const generatePasswords = () => {
.generate-btn {
width: 100%;
}
.desktop-only {
display: none;
}
.mobile-only {
display: block !important;
}
}
</style>