Fix dates (hopefully) pt.3
This commit is contained in:
parent
75eb0c88ba
commit
a9826a410d
2 changed files with 2 additions and 2 deletions
|
@ -63,7 +63,7 @@ impl FromStr for Image {
|
||||||
tag: parts[1].clone(),
|
tag: parts[1].clone(),
|
||||||
id: parts[2].clone(),
|
id: parts[2].clone(),
|
||||||
created: parts[3..(parts.len() - 2)].join(" "),
|
created: parts[3..(parts.len() - 2)].join(" "),
|
||||||
size: parts.last().expect("Failed to get last item!").clone(),
|
size: parts[(parts.len() - 2)..parts.len()].join(" "),
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -43,6 +43,6 @@
|
||||||
|
|
||||||
.image-box {
|
.image-box {
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
box-shadow: -1px -1px #ff0000;
|
box-shadow: 1px -1px #000000;
|
||||||
margin: 10px;
|
margin: 10px;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue