Skip to content

Commit

Permalink
border-color-4 css
Browse files Browse the repository at this point in the history
  • Loading branch information
sspenst committed Mar 23, 2024
1 parent 1b3b981 commit 554106a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions components/level/gameWrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ export default function GameWrapper({ chapter, collection, level, onNext, onPrev
// this allows updating the collection level list on level change to continue running behind the scenes
{ 'xl:flex': !isCollectionViewHidden },
)}>
<div className='flex justify-between w-full gap-2 items-center px-4 py-3 border-b border-color-4'>
<div className='flex justify-between w-full gap-2 items-center px-4 py-3 border-b border-color-3'>
{getCollectionTitle()}
<button onClick={() => setIsCollectionViewHidden(true)}>
<svg className='w-5 h-5 hover:opacity-100 opacity-50' fill='currentColor' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg' style={{ minWidth: 20, minHeight: 20 }}>
Expand All @@ -248,7 +248,7 @@ export default function GameWrapper({ chapter, collection, level, onNext, onPrev
<div className='hidden xl:flex flex-col border-l border-color-3 break-words z-10 h-full w-100'>
{collection && isCollectionViewHidden &&
<button
className='flex items-center gap-4 w-full border-b border-color-4 hover-bg-3 transition px-4 py-3'
className='flex items-center gap-4 w-full border-b border-color-3 hover-bg-3 transition px-4 py-3'
onClick={() => {
if (setIsCollectionViewHidden) {
setIsCollectionViewHidden(false);
Expand Down
2 changes: 1 addition & 1 deletion components/nav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ export default function Nav({ isDropdown }: NavProps) {
return (
<nav
className={classNames(
'w-60 border-color-4 bg-1 flex flex-col gap-1 overflow-y-auto',
'w-60 bg-1 flex flex-col gap-1 overflow-y-auto',
isDropdown ? 'p-1' : 'fixed p-2',
)}
style={{
Expand Down

0 comments on commit 554106a

Please sign in to comment.