blob: 408167b913936e77ee0bd485659f1533abb5bbbb (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
/* This file is for your main application css. */
@import "./milligram.css";
body {
background-color: #dddddd;
}
.container {
margin: 0 auto;
max-width: 90.0rem;
padding: 0 2.0rem;
position: relative;
width: 100%;
}
.wa-avatar {
text-align: center;
}
.wa-row {
display: flex;
flex-direction: column;
}
.wa-row-left {
align-items: flex-start;
}
.wa-row-right {
align-items: flex-end;
}
/* Message box */
.wa-message {
padding: 0px !important;
margin-top: 10px;
background-color: white;
border-radius: 5px;
box-shadow: 1px 1px 2px grey;
max-width: 65%;
}
.wa-message-photo {
border-radius: 5px 5px 0 0;
max-height: 600px;
}
.wa-message-box {
padding: 0 10px 0 10px;
margin-top: 5px;
}
.wa-message-date {
text-align: right;
color: grey;
font-size: 12px;
}
|