-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
_a11y.scss
24 lines (22 loc) · 900 Bytes
/
_a11y.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* ==========================================================================
tools.a11y
Helpers to create more accessible sites
/ =========================================================================== */
/* --------------------------------------------------------------------------
Visually-hidden
Hides an element visually while still allowing the content to be accessible
to assistive technology, e.g. screen readers.
Usage: @include visually-hidden();
/ --------------------------------------------------------------------------- */
@mixin visually-hidden {
border: 0 !important;
clip: rect(0 0 0 0) !important;
clip-path: inset(50%) !important;
block-size: 1px !important;
margin: -1px !important;
overflow: hidden !important;
padding: 0 !important;
position: absolute !important;
white-space: nowrap !important;
inline-size: 1px !important;
}