File tree Expand file tree Collapse file tree 3 files changed +19
-1
lines changed Expand file tree Collapse file tree 3 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -315,6 +315,16 @@ em {
315
315
background : # ffc ;
316
316
}
317
317
318
+ @media only screen and (max-width : 375px ) {
319
+ .item-list .header .time {
320
+ width : 4.05em ;
321
+ }
322
+
323
+ .item-list .detail .time span {
324
+ display : none;
325
+ }
326
+ }
327
+
318
328
@media only screen and (max-width : 350px ) {
319
329
.item-list .detail .time {
320
330
display : none;
Original file line number Diff line number Diff line change @@ -266,6 +266,14 @@ margin: 1em;
266
266
padding: 1em;
267
267
background: #ffc;
268
268
}
269
+ @media only screen and (max-width: 375px) {
270
+ .item-list .header .time {
271
+ width: 4.05em;
272
+ }
273
+ .item-list .detail .time span {
274
+ display: none;
275
+ }
276
+ }
269
277
@media only screen and (max-width: 350px) {
270
278
.item-list .detail .time {
271
279
display: none;
Original file line number Diff line number Diff line change 6
6
)
7
7
8
8
func FormatTime (t time.Time ) template.HTML {
9
- return template .HTML (t .Format ("2006-01-02 15:04" ))
9
+ return template .HTML (t .Format ("2006-01-02<span> 15:04</span> " ))
10
10
}
You can’t perform that action at this time.
0 commit comments