blob: 21d471c8c940c9e765a47b33159b2c02b43b6fc5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
import styled from "styled-components";
export const ResultTitle = styled.h1`
text-align: center;
@media (max-width: 768px) {
width: 100%;
}
`;
export const Tries = styled.h4`
@media (max-width: 768px) {
text-align: center;
width: 100%;
}
margin-top: 0;
`;
export const SongTitle = styled.h3`
@media (max-width: 768px) {
text-align: center;
width: 100%;
}
margin-top: 0;
`;
export const TimeToNext = styled.h4`
@media (max-width: 768px) {
text-align: center;
width: 100%;
}
`;
|