Remove all base styles followup (#2900)

This commit is contained in:
Ben Word
2021-12-20 08:32:50 -06:00
committed by GitHub
parent c74afa4789
commit 358ae364d7
3 changed files with 16 additions and 21 deletions

View File

@@ -1,5 +1,3 @@
<div {{ $attributes->merge(['class' => $type]) }}> <div {{ $attributes->merge(['class' => $type]) }}>
<div class="px-4 py-3">
{!! $message ?? $slot !!} {!! $message ?? $slot !!}
</div> </div>
</div>

View File

@@ -6,7 +6,7 @@
<input <input
type="search" type="search"
class="px-3 py-1 border" class=""
placeholder="{!! esc_attr_x('Search &hellip;', 'placeholder', 'sage') !!}" placeholder="{!! esc_attr_x('Search &hellip;', 'placeholder', 'sage') !!}"
value="{{ get_search_query() }}" value="{{ get_search_query() }}"
name="s" name="s"
@@ -15,7 +15,7 @@
<input <input
type="submit" type="submit"
class="px-3 py-1 text-white bg-indigo-500 cursor-pointer" class=""
value="{{ esc_attr_x('Search', 'submit button', 'sage') }}" value="{{ esc_attr_x('Search', 'submit button', 'sage') }}"
> >
</form> </form>

View File

@@ -1,12 +1,10 @@
<div class="max-w-3xl mx-auto">
<a class="sr-only focus:not-sr-only" href="#main"> <a class="sr-only focus:not-sr-only" href="#main">
{{ __('Skip to content') }} {{ __('Skip to content') }}
</a> </a>
@include('partials.header') @include('partials.header')
<main id="main" class="py-8 prose main"> <main id="main" class="main">
@yield('content') @yield('content')
</main> </main>
@@ -17,4 +15,3 @@
@endif @endif
@include('partials.footer') @include('partials.footer')
</div>