Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
realodix committed Dec 14, 2024
1 parent cde241e commit 0c47895
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion resources/css/main.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@import 'base.css';

.navbar {
@apply bg-uh-bg-1 text-primary-800;
@apply bg-white text-primary-800;
@apply border-b border-uh-border-color;

&-brand {
Expand Down
4 changes: 2 additions & 2 deletions resources/views/backend/about.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
@section('content')
<main class="page_about max-w-4xl">
<div class="flex flex-wrap gap-4 mb-4 justify-end">
<div class="bg-uh-bg-1 p-4 sm:rounded-lg w-full md:w-2/6
<div class="bg-white p-4 sm:rounded-lg w-full md:w-2/6
border-y border-uh-border-color sm:border-none sm:shadow-md"
>
<div class="flex flex-row space-x-4 items-center">
Expand All @@ -18,7 +18,7 @@
</div>
</div>
</div>
<div class="bg-uh-bg-1 p-4 sm:rounded-lg w-full md:w-2/6
<div class="bg-white p-4 sm:rounded-lg w-full md:w-2/6
border-y border-uh-border-color sm:border-none sm:shadow-md"
>
<div class="flex flex-row space-x-4 items-center">
Expand Down
4 changes: 2 additions & 2 deletions resources/views/backend/dashboard.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
@section('content')
<main>
<div class="grid gird-cols-1 md:grid-cols-4 gap-7 mb-8">
<div class="bg-uh-bg-1 p-4 sm:rounded-lg
<div class="bg-white p-4 sm:rounded-lg
border-y border-uh-border-color sm:border-none sm:shadow-md"
>
<div class="flex flex-row space-x-4 items-center">
Expand All @@ -17,7 +17,7 @@
</div>
</div>
</div>
<div class="bg-uh-bg-1 p-4 sm:rounded-lg
<div class="bg-white p-4 sm:rounded-lg
border-y border-uh-border-color sm:border-none sm:shadow-md"
>
<div class="flex flex-row space-x-4 items-center">
Expand Down
2 changes: 1 addition & 1 deletion resources/views/partials/header-localmenu.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
$routeName = request()->route()->getName();
@endphp

<nav class="bg-uh-bg-1 pt-1">
<nav class="pt-1">
<div class="hidden layout-container sm:flex px-4 sm:px-6 lg:px-8 croll-smooth hover:scroll-auto">
<a href="{{ route('dashboard') }}"
class="mr-8 py-3 font-semibold hover:text-primary-700 transition duration-100 ease-in-out border-b-2 border-transparent
Expand Down
1 change: 0 additions & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ export default {
"primary-700": "#4338ca",
"primary-800": "#3730a3",
"uh-blue": "#3d5b99",
"uh-bg-1": "#fff",
"uh-border-color": "#d0d7de",
},
},
Expand Down

0 comments on commit 0c47895

Please sign in to comment.