Skip to content

Commit 719a06e

Browse files
jordaneclaude
authored andcommitted
style(meetings): enhance login button visibility with brand colors
Update the meeting join page login button to use LFX brand blue colors instead of gray for better visibility and prominence when users are not authenticated. Changes include: - Apply bg-brand-500 (primary LFX blue) background - Add hover:bg-brand-600 for darker blue on hover - Use white text for high contrast - Increase padding from px-2 py-1 to px-3 py-2 - Add font-medium weight and shadow-sm for visual emphasis 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> Signed-off-by: Jordan Evans <jevans@linuxfoundation.org>
1 parent 455ea7f commit 719a06e

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

apps/lfx-one/src/app/modules/meeting/meeting-join/meeting-join.component.html

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -263,13 +263,14 @@ <h4 class="font-medium text-gray-900 font-sans">{{ user.name }}</h4>
263263
<h4 class="font-medium text-gray-900 font-sans mb-1">Sign in with your LFX account</h4>
264264
<p class="text-sm text-gray-600 font-sans">Join quickly with your saved information</p>
265265
</div>
266-
<a
266+
<lfx-button
267267
size="small"
268-
class="inline-flex items-center gap-1 px-2 py-1 bg-gray-100 hover:bg-gray-200 text-xs rounded transition-colors ml-4"
269-
[href]="'/login?returnTo=' + returnTo()">
270-
<i class="fa-light fa-sign-in"></i>
271-
<span>Sign In</span>
272-
</a>
268+
severity="primary"
269+
label="Sign In"
270+
icon="fa-light fa-sign-in"
271+
[href]="'/login?returnTo=' + returnTo()"
272+
styleClass="ml-4">
273+
</lfx-button>
273274
</div>
274275
</ng-template>
275276
</lfx-message>

0 commit comments

Comments
 (0)