scttcper / gatsby-casper

A Casper blog starter for Gatsby

Home Page:https://gatsby-casper.netlify.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Subscription form covered

nirtamir2 opened this issue · comments

Subscription form covered

This is a styling issue.

When clicking on the subscribe button on the top of the page

image

the subscription form is covered by content.

image

This can be fixed by removing src/styles/shared.ts z-index.

export const SiteMain = css`
- z-index: 100;
  flex-grow: 1;

  @media (prefers-color-scheme: dark) {
    background: ${colors.darkmode};
  }
`;

What do you think?