Skip to content

Commit 0f1c2df

Browse files
authored
DocsLittleFixes (#139)
1 parent 72bfa1c commit 0f1c2df

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

ComponentViewer.Docs/Pages/Index.razor

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
</div>
3232

3333
<div class="d-flex justify-center my-4">
34-
<MudTextFieldExtended T="string" @bind-Value="_searchString" @bind-Value:after="@(() => _animate.Refresh())" Class="search-style" Style="width: 50vw" Placeholder="What are you looking for?" Variant="Variant.Outlined" Clearable="true" />
34+
<MudTextFieldExtended T="string" @bind-Value="_searchString" @bind-Value:after="@(() => _animate.Refresh())" Class="search-style" Style="width: calc(50px + 50vw)" Placeholder="What are you looking for?" Variant="Variant.Outlined" Clearable="true" />
3535
</div>
3636

3737
@if (string.IsNullOrEmpty(_searchString) == true)
@@ -134,7 +134,7 @@
134134
color: var(--mud-palette-text-primary);
135135
font-size: calc(16px + 6vw);
136136
font-weight: 900;
137-
font-family: "Roboto Black";
137+
font-family: "Roboto";
138138
letter-spacing: 0;
139139
transition: all 1s;
140140
cursor: pointer;
@@ -149,7 +149,7 @@
149149
color: var(--mud-palette-text-primary);
150150
font-size: calc(16px + 6vw);
151151
font-weight: 900;
152-
font-family: "Roboto Black";
152+
font-family: "Roboto";
153153
letter-spacing: 0;
154154
transition: all 1s;
155155
cursor: pointer;

ComponentViewer.Wasm/wwwroot/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
<link href="css/app.css" rel="stylesheet" />
1010
<link href="app.css" rel="stylesheet" />
1111
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" rel="stylesheet" />
12+
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@700;900&display=swap" rel="stylesheet">
1213
<link href="_content/MudBlazor/MudBlazor.min.css" rel="stylesheet" />
1314
<link href="_content/CodeBeam.MudExtensions/MudExtensions.min.css" rel="stylesheet" />
1415
</head>

ComponentViewer/Pages/_Layout.cshtml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
<link href="app.css" rel="stylesheet" />
1313
<link href="ComponentViewer.styles.css" rel="stylesheet" />
1414
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" rel="stylesheet" />
15+
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@700;900&display=swap" rel="stylesheet">
1516
<link href="_content/MudBlazor/MudBlazor.min.css" rel="stylesheet" />
1617
<link href="_content/CodeBeam.MudExtensions/MudExtensions.min.css" rel="stylesheet" />
1718
<component type="typeof(HeadOutlet)" render-mode="ServerPrerendered" />

0 commit comments

Comments
 (0)