forked from majid-amini/whatsAPP_test
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqueries.css
More file actions
86 lines (69 loc) · 1.02 KB
/
queries.css
File metadata and controls
86 lines (69 loc) · 1.02 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
@media (max-width: 65em) {
main {
width: 100%;
height: 100%;
display: flex;
flex-direction: row;
}
.side__upper {
height: 15%
}
.chat__main {
height: 100%;
}
.chat__header {
flex-shrink: 0;
}
}
@media (max-width: 53em) {
.side__lower-contact {
margin: 0 1rem;
}
.side__lower-contact-text {
display: none;
}
.chat__action {
height: 8rem;
}
.chat__action-input,
.chat__main-msg {
font-size: var(--font-md);
}
.chat__main-date {
font-size: var(--font-xs);
}
}
@media (max-width: 45em) {
.side {
width: 40%
}
.chat {
width: 60%;
}
.chat__main-msg {
max-width: 80%;
}
}
@media (max-width: 30em) {
.side__upper-header svg,
.chat__header-icons svg,
.chat__action svg {
width: 2rem;
height: 2rem;
}
.chat__main-msg {
max-width: 90%;
padding: 1rem 1.5rem;
}
}
@media (max-width: 25em) {
.side {
display: none;
}
.chat {
width: 100%;
}
.chat__action {
padding: 0 1rem
}
}