We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2edebbe commit 541376dCopy full SHA for 541376d
2 files changed
src/CodeBreaker.Blazor.Client/Shared/MainLayout.razor
@@ -3,7 +3,7 @@
3
4
<FluentMainLayout>
5
<Header>
6
- <h1>@($"{Loc["Index_Welcome"]} {Loc["AppDisplayName"]}")</h1>
+ <h1><span id="welcome-message">@Loc["Index_Welcome"]</span> @Loc["AppDisplayName"]</h1>
7
<FluentSpacer />
8
<LoginDisplay />
9
</Header>
src/CodeBreaker.Blazor.Client/Shared/MainLayout.razor.css
@@ -0,0 +1,10 @@
1
+h1 {
2
+ font-size: 1.5em;
+ margin: 0;
+}
+
+@media only screen and (max-width : 600px) {
+ #welcome-message {
+ display: none;
+ }
10
0 commit comments