diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2023-01-12 17:12:31 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2023-01-12 17:12:31 +0700 |
| commit | 9aeb019257787b355f7b51f401d7f417899252f5 (patch) | |
| tree | d159c7da9195d4ad058eb0fb9cfa72b1e86baa30 /src/styles/globals.css | |
| parent | 3770bcca65e85af7273a3f565b3ca616f852e936 (diff) | |
form validation, fix cart, fix checkout, create address
Diffstat (limited to 'src/styles/globals.css')
| -rw-r--r-- | src/styles/globals.css | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/styles/globals.css b/src/styles/globals.css index e90228bd..e223036b 100644 --- a/src/styles/globals.css +++ b/src/styles/globals.css @@ -115,6 +115,13 @@ html, body { ; } + .form-input[aria-invalid] { + @apply + border-red_r-10 + focus:border-red_r-10 + ; + } + .btn-yellow, .btn-light, .btn-red { @@ -400,4 +407,10 @@ html, body { !shadow-none !border-gray_r-7 ; +} + +.form-select__control--menu-is-open { + @apply + !border-yellow_r-9 + ; }
\ No newline at end of file |
