Skip to content

Commit

Permalink
fix(preview-warning): change wording
Browse files Browse the repository at this point in the history
  • Loading branch information
coderbyheart committed Jun 21, 2023
1 parent b7b87e8 commit 4e95eeb
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions src/components/PreviewWarning.tsx
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@
import { styled } from 'styled-components'

const W = styled.div`
background-color: #e10707;
color: white;
text-shadow: 1px 1px 2px #00000033, -1px 1px 2px #00000033,
-1px -1px 2px #00000033, 1px -1px 2px #00000033;
background-color: var(--color-nordic-sun);
color: var(--color-nordic-dark-grey);
`

export const PreviewWarning = () => (
<W role="alert">
<div class="container p-2 d-flex justify-content-between">
<strong>
Development preview: this project is under development and not ready to
use.
Early access: this project is under development and you may experience
service interruptions.
</strong>
</div>
</W>
Expand Down

0 comments on commit 4e95eeb

Please sign in to comment.