Refactor components and styles for consistency and clarity

This commit is contained in:
2025-03-27 12:14:19 +05:30
parent 93d0624b17
commit 1bbb210786
8 changed files with 110 additions and 93 deletions

View File

@@ -1,7 +1,14 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
user-select: none;
font-size: var(--font-size-regular);
margin: 0;
padding: 0;
box-sizing: border-box;
user-select: none;
font-size: var(--font-size-regular);
}
input[type="password"]::-ms-reveal, /* For Microsoft Edge */
input[type="password"]::-ms-clear, /* For Edge clear button */
input[type="password"]::-webkit-clear-button, /* For Chrome/Safari clear button */
input[type="password"]::-webkit-inner-spin-button { /* Just in case */
display: none;
}