ui: implement verified-card focus state style on Q&A inputs

This commit is contained in:
Devesh S
2026-07-23 21:52:57 +05:30
parent e37d935324
commit fc94b5081f
2 changed files with 16 additions and 2 deletions

View File

@@ -294,3 +294,17 @@ h1, h2, h3, h4, h5, h6 {
align-self: flex-start;
border: 1px solid #E5E7EB;
}
/* Verified card style input focus state */
.verified-focus-input {
transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
background-color: #FFFFFF;
border: 1.5px solid #E5E7EB !important;
}
.verified-focus-input:focus {
outline: none !important;
border-color: #F97316 !important;
background-image: linear-gradient(to bottom, #FFFFFF 0%, #FFF7ED 100%) !important;
box-shadow: none !important;
}