diff --git a/src/App.vue b/src/App.vue index ae924427..c5f99eee 100644 --- a/src/App.vue +++ b/src/App.vue @@ -40,6 +40,17 @@ export default { shouldShowTextCarousel() { return this.globalNonpersistedState.showTextCarousel; } + }, + watch: { + shouldShowLoader(newVal) { + // prevent keyboard input when loader is shown, re-enable when hidden + if(newVal) { + document.onkeydown = () => false; + } + else { + document.onkeydown = null; + } + } } }; // Add a global Javascript exception handler for logging exceptions, this handler will log when there is an uncaught exception diff --git a/src/digital-components/text-block/text-block.vue b/src/digital-components/text-block/text-block.vue index f6db4887..33b452b8 100644 --- a/src/digital-components/text-block/text-block.vue +++ b/src/digital-components/text-block/text-block.vue @@ -7,7 +7,7 @@ :key="copy"> + - -
+
-
+
+ diff --git a/src/styles/common-styles.scss b/src/styles/common-styles.scss index c5861ac9..830c2d29 100644 --- a/src/styles/common-styles.scss +++ b/src/styles/common-styles.scss @@ -199,4 +199,16 @@ $heritage-btn-width: 9.0625rem; // 145px // fixes flicker while transitioning between states transition: background 0s 0s ease-in-out; } +} + +a.router-link { + color: $heritage-blue-primary; + text-decoration: none; + font-weight: $font-weight-bold; + + &:hover, + &:focus { + color: #125b7e; + text-decoration: underline; + } } \ No newline at end of file diff --git a/src/ux-components/alert/alert.vue b/src/ux-components/alert/alert.vue index cda82a85..1fa8a155 100644 --- a/src/ux-components/alert/alert.vue +++ b/src/ux-components/alert/alert.vue @@ -57,7 +57,7 @@ + :marginTopSizeOverride="0" />