style updates

This commit is contained in:
Chuck Dries 2022-10-19 01:30:12 -07:00
parent 8e4f63d2fd
commit 318b695866
No known key found for this signature in database
GPG Key ID: A00B7AEAE1DC5BE6
2 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@ const KeywordsPicker = ({ keywords, value, onChange }: KeywordsPickerProps) => {
<li key={keyword}>
<button
className={classNames(
"py-[5px] px-2 rounded-full text-[#C8C8C8] hover:bg-gray-700 bg-[#1A1A1A] border border-[#494949] ",
"py-[5px] px-2 rounded-full text-[#C8C8C8] hover:bg-black bg-[#1A1A1A] border border-[#494949] ",
selected && "bg-blue-600 hover:bg-blue-800"
)}
onClick={() => (selected ? onChange(null) : onChange(keyword))}

View File

@ -168,8 +168,8 @@ const GalleryPage = ({ data }: PageProps<Queries.GalleryPageQueryQuery>) => {
<Nav
className="mb-4"
internalLinks={[{ href: "/", label: "Home" }]}
></Nav>
<div className="flex flex-col mr-5 md:ml-4 ml-2 mt-4 md:mt-6 font-serif">
/>
<div className="flex flex-col text-center mr-5 md:ml-4 ml-2 my-4 md:my-7 font-serif">
<h1 className="text-5xl mt-0 font-black z-10">Chuck Dries</h1>
<h2 className="">Full Stack Software Engineer & Photographer</h2>
</div>