Skip to content

Commit

Permalink
Merge pull request #72 from Codykilpatrick/feat/visual-tweats
Browse files Browse the repository at this point in the history
feat: visual tweaks
  • Loading branch information
Codykilpatrick authored Nov 30, 2023
2 parents 4456725 + cb00578 commit 904c992
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/celestia-app/src/components/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import Link from 'next/link';

const Header = () => {
return (
<div className="bg-plum-5 h-16 flex-col flex justify-center">
<div className="bg-plum-5 h-16 flex-col flex justify-center shadow-md shadow-black">
<ul className="flex justify-between mx-4">
<li className="text-gray-11 px-2 hover:text-gray-12">
<Link href="/">Home</Link>
Expand Down
4 changes: 2 additions & 2 deletions packages/celestia-app/src/components/hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -182,10 +182,10 @@ const Hero = ({ itemNames, locationNames }: HeroProps) => {

return (
<div className="h-full mx-12">
<div className="bg-plum-3 mt-8 rounded-lg overflow-hidden">
<div className="bg-plum-3 mt-8 rounded-lg overflow-hidden shadow-lg shadow-black">
<Graph currentItem={currentItem} currentItemName={currentItemName} currentRegionId={currentRegionId} />
</div>
<div className="bg-plum-3 mt-8 rounded-lg">
<div className="bg-plum-3 mt-8 rounded-lg shadow-lg shadow-black">
<div className="flex justify-center items-center pt-4 flex-col sm:flex-row">
<div className="mx-4 my-4 sm:my-0 flex flex-col sm:flex-row">
<label htmlFor="regionSelect" className="text-gray-11">
Expand Down
2 changes: 1 addition & 1 deletion packages/celestia-app/src/pages/blog/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const Blog = () => {
return (
<div className="h-full mx-12 bg-plum-4 mt-16 rounded-lg overflow-hidden text-gray-11">
<div className="h-full mx-12 bg-plum-4 mt-16 rounded-lg overflow-hidden text-gray-11 shadow-lg shadow-black">
<div className="py-8 px-12">
<h1 className="text-center text-5xl font-semibold text-gray-12">Release Day!</h1>
<p className="my-4">
Expand Down
2 changes: 1 addition & 1 deletion packages/celestia-app/src/pages/feedback/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const Feedback = () => {
return (
<div className="h-full mx-12 bg-plum-3 mt-16 rounded-lg overflow-hidden text-gray-12">
<div className="h-full mx-12 bg-plum-3 mt-16 rounded-lg overflow-hidden text-gray-12 shadow-lg shadow-black">
<div className="m-4">
<p className="py-2">
Your feedback is important to making this a useful tool. Whether it is a issue with the website itself, an
Expand Down

0 comments on commit 904c992

Please sign in to comment.