Restyle fake UI and inputs, hide scrollbars

This commit is contained in:
dan
2025-12-06 19:34:00 +03:00
parent 2ea0140cf6
commit 096628b25f
6 changed files with 331 additions and 127 deletions

View File

@@ -134,3 +134,22 @@
},
};
</script>
<style scoped>
.form-control {
background: rgba(122, 29, 255, 0.06);
border: 1px solid rgba(122, 29, 255, 0.5);
color: var(--accent);
font-family: var(--pixel-font);
font-size: 11px;
letter-spacing: 0.5px;
box-shadow: none;
}
.form-control:focus {
background: rgba(122, 29, 255, 0.12);
border-color: rgba(198, 107, 255, 0.9);
color: var(--text);
box-shadow: 0 0 12px rgba(198, 107, 255, 0.25);
}
</style>