Skip to content

Commit

Permalink
refactor(ui): only show fixed top border on pwa desktop widths
Browse files Browse the repository at this point in the history
  • Loading branch information
sct committed Jun 23, 2021
1 parent 4eab2fe commit 1137854
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Layout/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const Layout: React.FC = ({ children }) => {

return (
<div className="flex h-full min-w-0 min-h-full bg-gray-900">
<div className="fixed inset-0 z-20 w-full h-1 border-t border-gray-700 pwa-only" />
<div className="fixed inset-0 z-20 w-full h-1 border-gray-700 md:border-t pwa-only" />
<div className="absolute top-0 w-full h-64 from-gray-800 to-gray-900 bg-gradient-to-bl">
<div className="relative inset-0 w-full h-full from-gray-900 to-transparent bg-gradient-to-t" />
</div>
Expand Down

0 comments on commit 1137854

Please sign in to comment.