feat: add hint to shrink window to hide config

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Julien Calixte
2026-03-15 00:40:48 +01:00
parent 1d43b87836
commit 3b9b26f993

View File

@@ -141,6 +141,7 @@ const copyUrl = () => {
<button @click="copyUrl">copy url</button> <button @click="copyUrl">copy url</button>
<a :href="url" target="_blank" rel="noopener noreferrer"><button type="button">open url</button></a> <a :href="url" target="_blank" rel="noopener noreferrer"><button type="button">open url</button></a>
</div> </div>
<p class="hint">Shrink the window to hide this config.</p>
</form> </form>
</div> </div>
</template> </template>
@@ -208,4 +209,12 @@ input {
display: flex; display: flex;
} }
} }
.hint {
font-size: 0.75rem;
opacity: 0.5;
width: 100%;
text-align: center;
margin: 0;
}
</style> </style>