Skip to content

Commit

Permalink
chore: address pr comments
Browse files Browse the repository at this point in the history
* remove border shadow, adjust border to only be bottom & increase header
padding
* target only dark mode class
  • Loading branch information
moonlight-komorebi committed Nov 3, 2021
1 parent 4ca9cf2 commit eda3cd1
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/templates/QuickstartDetails.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,19 +128,18 @@ const QuickstartDetails = ({ data, location }) => {
@media (min-width: 760px) {
background: var(--primary-background-color);
border: 1px solid var(--border-color);
border-bottom: 1px solid var(--border-color);
border-radius: 0.25rem;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
grid-template-areas:
'logo title cta'
'logo summ cta';
padding: 8px 0;
padding: 16px 0 24px;
position: sticky;
top: var(--global-header-height);
z-index: 80;
}
.dark-mode & {
.dark-mode {
box-shadow: none;
}
`}
Expand Down

0 comments on commit eda3cd1

Please sign in to comment.