Skip to content

Commit fb30ece

Browse files
committed
remove outline on focus
1 parent c80941f commit fb30ece

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

MyApp/Components/Account/Shared/ManageLayout.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
@layout AccountLayout
33

44
<div class="mt-8 mx-auto max-w-screen-lg">
5-
<Heading1>Manage your account</Heading1>
5+
<Heading1 class="focus:outline-none">Manage your account</Heading1>
66
<Heading4>Change your account settings</Heading4>
77
<hr class="mt-4 dark:border-gray-700" />
88
<div class="flex flex-wrap">

MyApp/Components/Pages/Home.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<div class="text-center">
2323
@if (!string.IsNullOrEmpty(AppData.Config.FeaturedTitle))
2424
{
25-
<h1 class="pt-12 text-white text-4xl font-bold tracking-tight sm:text-5xl lg:text-6xl">
25+
<h1 tabindex="-1" class="pt-12 text-white text-4xl font-bold tracking-tight sm:text-5xl lg:text-6xl focus:outline-none">
2626
@AppData.Config.FeaturedTitle
2727
</h1>
2828
}

MyApp/Components/Pages/Posts/Post.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
var authorHref = Blog.GetAuthorLink(author?.Name);
1919
var authorProfileUrl = Blog.GetAuthorProfileUrl(doc.Author);
2020
<article class="mt-20">
21-
<h1 class="text-6xl md:text-7xl lg:text-8xl font-bold tracking-tighter leading-tight md:leading-none mb-12 text-center md:text-left">
21+
<h1 class="text-6xl md:text-7xl lg:text-8xl font-bold tracking-tighter leading-tight md:leading-none mb-12 text-center md:text-left focus:outline-none">
2222
@doc.Title
2323
</h1>
2424
<div class="flex justify-between">

MyApp/wwwroot/pages/TemplateHome.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export default {
4949
<div class="flex justify-center my-20 py-20 bg-slate-100 dark:bg-slate-800">
5050
<div class="text-center">
5151
<svg class="text-indigo-600 w-36 h-36 inline-block" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="currentColor" d="m18 16l-4-3.2V16H6V8h8v3.2L18 8m2-4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2Z" /></svg>
52-
<h1 class="text-6xl md:text-7xl lg:text-8xl font-bold tracking-tighter leading-tight md:leading-none mb-12 text-center md:text-left">
52+
<h1 class="text-6xl md:text-7xl lg:text-8xl font-bold tracking-tighter leading-tight md:leading-none mb-12 text-center md:text-left focus:outline-none">
5353
Videos
5454
</h1>
5555
</div>

MyApp/wwwroot/tailwind/ServiceStack.Blazor.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1306,7 +1306,7 @@ <h2 class=@HeadingClass id="slide-over-title">@Title</h2>
13061306
<h1 class=@ClassNames(Classes, Class) @attributes="AdditionalAttributes">@ChildContent</h1>
13071307
@code {
13081308
[Parameter, EditorRequired] public RenderFragment? ChildContent { get; set; }
1309-
public static string Classes { get; set; } = "mb-4 text-3xl font-bold tracking-tight text-gray-900 dark:text-gray-50 sm:text-4xl";
1309+
public static string Classes { get; set; } = "mb-4 text-3xl font-bold tracking-tight text-gray-900 dark:text-gray-50 sm:text-4xl focus:outline-none";
13101310
}
13111311
@inherits UiComponentLiteBase
13121312
<h2 class=@ClassNames(Classes, Class) @attributes="AdditionalAttributes">@ChildContent</h2>

0 commit comments

Comments
 (0)