We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 541376d commit 3ad1893Copy full SHA for 3ad1893
2 files changed
src/CodeBreaker.Blazor.Client/Shared/LoginDisplay.razor
@@ -7,7 +7,7 @@
7
8
<AuthorizeView>
9
<Authorized>
10
- @Loc["Auth_TextBeforeUsername"] @context.User.Identity?.Name
+ <span id="text-before-username">@Loc["Auth_TextBeforeUsername"]</span> @context.User.Identity?.Name
11
<FluentSpacer Width="20" />
12
<FluentButton Appearance="Appearance.Stealth" OnClick="Logout" IconStart="new Icons.Regular.Size20.SignOut()">
13
@Loc["Auth_Signout"]
src/CodeBreaker.Blazor.Client/Shared/LoginDisplay.razor.css
@@ -0,0 +1,5 @@
1
+@media only screen and (max-width : 400px) {
2
+ #text-before-username {
3
+ display: none;
4
+ }
5
+}
0 commit comments