Skip to content

Commit

Permalink
Improve UrlHub logo (#1038)
Browse files Browse the repository at this point in the history
  • Loading branch information
realodix authored Dec 19, 2024
1 parent ddda8ea commit 78167a5
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
4 changes: 4 additions & 0 deletions resources/css/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ main {
@apply bg-gray-50 font-sans text-gray-900 antialiased;
}

.logo {
@apply text-uh-blue font-serif font-bold;
}

@layer base {
h1 {
@apply text-4xl;
Expand Down
3 changes: 1 addition & 2 deletions resources/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@
@apply border-b border-uh-border-color;

&-brand {
@apply flex items-center;
@apply font-serif text-4xl font-bold;
@apply flex items-center text-4xl;
}

&-toggler {
Expand Down
5 changes: 3 additions & 2 deletions resources/views/auth/login.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@

@section('content')
<div class="flex flex-col min-h-screen sm:justify-center items-center pt-6 sm:pt-0">

<div class="font-bold text-uh-blue text-4xl sm:text-6xl">{{ config('app.name') }}</div>
<div class="logo text-4xl sm:text-6xl">
<a href="{{ url('/') }}">{{ config('app.name') }}</a>
</div>

@if(session()->has('login_error'))
<div class="alert alert-danger alert-dismissible fade show" role="alert">
Expand Down
4 changes: 3 additions & 1 deletion resources/views/auth/register.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@

@section('content')
<div class="flex flex-col min-h-screen sm:justify-center items-center pt-6 sm:pt-0">
<div class="text-uh-blue font-bold text-4xl sm:text-6xl">{{ config('app.name') }}</div>
<div class="logo text-4xl sm:text-6xl">
<a href="{{ url('/') }}">{{ config('app.name') }}</a>
</div>

<div class="auth-card">
@if (!config('urlhub.registration') )
Expand Down
2 changes: 1 addition & 1 deletion resources/views/partials/header.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="layout-container flex
px-4 sm:px-6 lg:px-8 h-16 justify-between"
>
<a class="navbar-brand text-uh-blue" href="{{ url('/') }}">{{ config('app.name') }}</a>
<a class="navbar-brand logo" href="{{ url('/') }}">{{ config('app.name') }}</a>

@auth
<div class="hidden sm:flex sm:items-center sm:ml-6">
Expand Down

0 comments on commit 78167a5

Please sign in to comment.