aboutsummaryrefslogtreecommitdiff
path: root/partials
diff options
context:
space:
mode:
Diffstat (limited to 'partials')
-rw-r--r--partials/navbar.html4
-rw-r--r--partials/project-list.html2
-rw-r--r--partials/tailwind_class_groups.css9
3 files changed, 3 insertions, 12 deletions
diff --git a/partials/navbar.html b/partials/navbar.html
index 893659c..ccbc05b 100644
--- a/partials/navbar.html
+++ b/partials/navbar.html
@@ -1,11 +1,11 @@
<nav class="w-full mx-auto mt-10">
<div class="flex flex-wrap items-center px-10 gap-4 text-center text-lg lg:text-2xl">
- <a href="/" class="cursor-pointer font-bold hover:underline">
+ <a href="/" class="cursor-pointer font-bold hover:underline justify-center">
COMPROMYSE
</a>
- <div class="flex items-center gap-4 flex-wrap">
+ <div class="flex items-center gap-4 flex-wrap justify-center md:justify-left">
<a href="/projects" class="hover:underline">
[ PROJECTS ]
</a>
diff --git a/partials/project-list.html b/partials/project-list.html
index d9833b6..2552385 100644
--- a/partials/project-list.html
+++ b/partials/project-list.html
@@ -14,7 +14,7 @@
<a href="/projects#bubbl" class="contents group">
<div class="project-list-heading">CHIP8Emu</div>
- <div class="project-list-description">A VM/interpreter for CHIP-8.</div>
+ <div class="project-list-description">An Emulator/Interpreter for CHIP-8.</div>
</a>
<a href="/projects#bubbl" class="contents group">
diff --git a/partials/tailwind_class_groups.css b/partials/tailwind_class_groups.css
deleted file mode 100644
index 1bae0be..0000000
--- a/partials/tailwind_class_groups.css
+++ /dev/null
@@ -1,9 +0,0 @@
-@layer components {
- .project-list-heading {
- @apply text-lg group-hover:underline group-hover:text-pink-900 group-hover:bg-pink-100 p-1;
- }
-
- .project-list-description {
- @apply pl-3 border-l-3 border-dashed border-pink-300 group-hover:text-pink-900 group-hover:bg-pink-100 group-hover:underline flex items-center;
- }
-}