Merge pull request #677 from Safelite/CSR-793-vin-information-focus-issue-fix

CSR-793 hide content from screen readers when collapsed.
This commit is contained in:
bmauger 2022-08-18 13:38:00 -04:00 committed by GitHub
commit 09edff32e5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -79,6 +79,7 @@ export default {
max-height: 500px; max-height: 500px;
transition: all 250ms ease-in; transition: all 250ms ease-in;
opacity: 1; opacity: 1;
visibility: visible;
} }
} }
.vin-info { .vin-info {
@ -86,6 +87,7 @@ export default {
transition: all 250ms ease-out; transition: all 250ms ease-out;
overflow: hidden; overflow: hidden;
opacity: 0; opacity: 0;
visibility: hidden;
p { p {
margin-bottom: .5rem; margin-bottom: .5rem;
} }