Krishya | f1d0ea8 | 2025-05-03 17:01:58 +0800 | [diff] [blame] | 1 | /* ./pages/MessagePage/MessagePage.css */ |
2 | |||||
3 | .message-page { | ||||
4 | padding: 20px; | ||||
5 | background-color: #f8f9fa; | ||||
6 | min-height: calc(100vh - 120px); | ||||
7 | } | ||||
8 | |||||
9 | .message-page h2 { | ||||
10 | font-size: 24px; | ||||
11 | margin-bottom: 20px; | ||||
12 | } | ||||
13 | |||||
14 | .message-list { | ||||
15 | list-style: none; | ||||
16 | padding: 0; | ||||
17 | } | ||||
18 | |||||
19 | .message-item { | ||||
20 | background: #ffffff; | ||||
21 | border: 1px solid #dee2e6; | ||||
22 | border-radius: 6px; | ||||
23 | padding: 15px; | ||||
24 | margin-bottom: 15px; | ||||
25 | } | ||||
26 | |||||
27 | .message-header { | ||||
28 | font-size: 16px; | ||||
29 | margin-bottom: 10px; | ||||
30 | color: #343a40; | ||||
31 | display: flex; | ||||
32 | justify-content: space-between; | ||||
33 | } | ||||
34 | |||||
35 | .message-time { | ||||
36 | font-size: 14px; | ||||
37 | color: #6c757d; | ||||
38 | } | ||||
39 | |||||
40 | .message-content { | ||||
41 | font-size: 15px; | ||||
42 | color: #495057; | ||||
43 | } | ||||
44 |