2020-06-17 19:34:42 +00:00
|
|
|
* {
|
|
|
|
scroll-behavior: smooth;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Deshabilita animaciones si la usuaria las tiene deshabilitadas
|
|
|
|
*/
|
|
|
|
@media (prefers-reduced-motion: reduce) {
|
|
|
|
* {
|
|
|
|
scroll-behavior: auto;
|
|
|
|
animation: none !important;
|
|
|
|
}
|
|
|
|
}
|
2021-02-10 19:32:11 +00:00
|
|
|
|
|
|
|
.inaccesible {
|
|
|
|
outline: $red 1px solid;
|
|
|
|
|
|
|
|
@extend .position-relative;
|
|
|
|
|
|
|
|
&:focus::after {
|
|
|
|
@extend .position-fixed;
|
|
|
|
@extend .background-red;
|
|
|
|
@extend .white;
|
|
|
|
@extend .p-3;
|
|
|
|
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
width: 100vw;
|
|
|
|
font-size: 1rem;
|
|
|
|
|
|
|
|
word-wrap: normal;
|
|
|
|
line-break: auto;
|
|
|
|
white-space: pre-line;
|
|
|
|
|
|
|
|
content: attr(aria-label);
|
|
|
|
}
|
|
|
|
}
|