From d79fd3e6e11c30f7f99105dc600bd45b96aaf2b2 Mon Sep 17 00:00:00 2001 From: James Rowe Date: Mon, 4 Nov 2019 21:33:27 -0700 Subject: [PATCH] Change text chunk to a b-message --- ui/src/views/AuthenticationView.vue | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/ui/src/views/AuthenticationView.vue b/ui/src/views/AuthenticationView.vue index 651ffe9..3060a59 100644 --- a/ui/src/views/AuthenticationView.vue +++ b/ui/src/views/AuthenticationView.vue @@ -4,15 +4,16 @@ Page opened! Check your default browser for the page, and follow the instructions there to link your patreon account. When you are done, enter the username and token below. -

+ The Early Access release channel lets you try out the latest experimental features and fixes, before they are merged into yuzu. This channel includes all regular yuzu daily updates, plus these exclusive features. To be an Early Access member, you must be a Patreon Early Access Subscriber. -

- If you are a subscriber, click here to link your yuzu-emu.org account -

- If you are not already a subscriber, click here to become one -

+ +
+ If you are a subscriber, click here to link your yuzu-emu.org account +
+ If you are not already a subscriber, click here to become one +

@@ -77,6 +78,9 @@ export default { } }, computed: { + show_header: function() { + return !this.browser_opened && !this.verification_opened; + }, invalid_login: function() { return this.verification_opened && !this.$root.is_authenticated; },