aboutsummaryrefslogtreecommitdiff
path: root/src/components/screen_reader_notice/screen_reader_notice.vue
blob: 5098b94fbd2adc7d6d695bbdb07abadd60807824 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<template>
  <div
    class="screen-reader-text"
    :aria-live="ariaLive"
  >
    {{ currentText }}
  </div>
</template>

<script src="./screen_reader_notice.js"></script>

<style lang="scss">
.screen-reader-text {
  display: block;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  visibility: visible;
}
</style>