Skip to content

Commit

Permalink
Polish
Browse files Browse the repository at this point in the history
  • Loading branch information
brianlovin committed Nov 29, 2020
1 parent 3274199 commit 69f721e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/components/Header/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export default function Header() {
return (
<React.Fragment>
<MobileContainer expanded={isExpanded} data-cy="header">
<Background className="bg-white bg-opacity-50 dark:bg-gray-900" />
<Background className="bg-white bg-opacity-60 dark:bg-gray-900" />
{isExpanded ? (
<React.Fragment>
<CloseButton
Expand Down Expand Up @@ -151,7 +151,7 @@ export default function Header() {
<InnerGrid>
<NavLinks activeRoute={activeRoute} />
</InnerGrid>
<Background className="bg-white bg-opacity-50 dark:bg-gray-900" />
<Background className="bg-white bg-opacity-60 dark:bg-gray-900" />
</Container>
</React.Fragment>
)
Expand Down
2 changes: 2 additions & 0 deletions src/components/Overthought/Feedback/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ export default function Feedback({ post }: Props) {
id="feedback-email"
name="email"
placeholder="(Optional) Email"
type="email"
/>
</label>
<label>
Expand All @@ -121,6 +122,7 @@ export default function Feedback({ post }: Props) {
id="twitter"
name="twitter"
placeholder="(Optional) Twitter handle"
type="text"
/>
</label>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const ResourceRow = ({ resource }: Props) => (
href={resource.url}
target="_blank"
rel="noopener noreferrer"
className="flex items-center px-3 py-3 -mx-3 space-x-3 font-normal text-gray-700 rounded-md hover:bg-gray-100 dark:hover:bg-gray-800 dark:text-gray-300 hover:text-gray-800 dark:hover:text-gray-100"
className="flex items-center px-4 py-3 -mx-3 space-x-3 font-normal text-gray-700 rounded-md hover:bg-gray-100 dark:hover:bg-gray-800 dark:text-gray-300 hover:text-gray-800 dark:hover:text-gray-100"
>
<Link
className="flex-shrink-0 text-gray-800 dark:text-gray-400"
Expand Down
2 changes: 1 addition & 1 deletion src/components/SecurityChecklist/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default function SecurityChecklist() {
const keys = Object.keys(data)
const resources = keys.map((k) => data[k])
return (
<div className="flex flex-col mt-8 space-y-8">
<div className="flex flex-col mt-8 space-y-4 md:space-y-8">
{resources.map((resource) => (
<ChecklistItem key={resource.id} resource={resource} />
))}
Expand Down

1 comment on commit 69f721e

@vercel
Copy link

@vercel vercel bot commented on 69f721e Nov 29, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.