We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7417ad commit 7ee3876Copy full SHA for 7ee3876
frontend/src/pages/Challenges/index.js
@@ -94,7 +94,7 @@ export default function Challenges({ location }) {
94
</S.Filters>
95
</S.Head>
96
97
- {loading && <ChallengesSkeleton cards={6} />}
+ {loading && <S.Alert>Em manutenção! Os desafios estarão disponíveis novamente em breve :)</S.Alert>}
98
{!loading && (
99
<S.Section>
100
{challenges.map((challenge) => {
frontend/src/pages/Challenges/styled.js
@@ -2,6 +2,12 @@ import styled from 'styled-components';
2
import media from 'styled-media-query';
3
import chevronDown from '../../assets/chevron-down.svg';
4
5
+export const Alert = styled.form`
6
+ color: white;
7
+ text-align: center;
8
+ margin-top: 3em;
9
+`;
10
+
11
export const Section = styled.section`
12
margin-top: 3%;
13
display: flex;
0 commit comments