Skip to content

Commit

Permalink
flex updates
Browse files Browse the repository at this point in the history
  • Loading branch information
codymullins committed Jul 26, 2024
1 parent 742dd7d commit 0e1982c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Pure.Blazor.Components/Essentials/Header1.razor
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@inherits PureComponent
<div class="flex flex-col sm:flex-row justify-between items-center gap-4 sm:gap-0">
<div class="flex flex-col md:flex-row justify-between items-center gap-4 sm:gap-0">
<h1 id="@Id" class="text-2xl sm:text-3xl font-extrabold leading-6 subpixel-antialiased text-gray-800 tracking-wide @Styles">@ChildContent</h1>
@if (Suffix is not null)
{
Expand Down
2 changes: 1 addition & 1 deletion src/Pure.Blazor.Components/Layout/PureTabButton.razor
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
@code {
private ElementReference? _elementReference;
private bool prevStateActive = false;
private const string BaseCss = "w-1/2 sm:w-auto justify-center sm:justify-start inline-flex items-center font-medium";
private const string BaseCss = "sm:w-auto justify-center sm:justify-start inline-flex items-center font-medium";
[Parameter] public string Title { get; set; } = string.Empty;

[Parameter] public bool IsActive { get; set; }
Expand Down

0 comments on commit 0e1982c

Please sign in to comment.