Update css for tag boxes

Julien LepillerSun Mar 07 14:55:30+0100 2021

7322815

Update css for tag boxes

assets/css/gitile.css

237237
  border-bottom: none;
238238
}
239239
240-
.commit-info {
240+
.commit-info, .tag-box {
241241
  border: 1px solid var(--gray);
242242
  margin-top: 1em;
243243
  margin-bottom: 1em;

249249
  background: var(--white);
250250
}
251251
252-
.commit-info .commit {
252+
.commit-info .commit, .tag-box .tag {
253253
  flex: 1
254254
}
255255
256-
.commit-info .message {
256+
.commit-info .message, .tag-box .tag-name {
257257
  font-weight: bold;
258258
}
259259
260-
.commit-info .author, .commit-info .date {
260+
.commit-info .author, .commit-info .date, .tag-box .date {
261261
  display: inline-block;
262262
  padding: 0.5em 0;
263263
}
264264
265+
.tag-box .tag p {
266+
  margin: 0;
267+
}
268+
269+
.tag-box img {
270+
  margin-right: 0.5em;
271+
}
272+
265273
.commit-info img {
266274
  max-width: 64px;
267275
  max-height: 64px;

307315
  margin-right: 0.3em;
308316
}
309317
310-
.commit-info .date {
318+
.commit-info .date, .tag-box .date {
311319
  font-style: italic;
312320
  margin-left: 1em;
313321
}
314322
315-
.commit-info .author::before {
323+
.commit-info .author::before, .tag-box .author::before {
316324
  content: "Authored by: ";
317325
}
318326