Update css for tag boxes
assets/css/gitile.css
237 | 237 | border-bottom: none; | |
238 | 238 | } | |
239 | 239 | ||
240 | - | .commit-info { | |
240 | + | .commit-info, .tag-box { | |
241 | 241 | border: 1px solid var(--gray); | |
242 | 242 | margin-top: 1em; | |
243 | 243 | margin-bottom: 1em; | |
… | |||
249 | 249 | background: var(--white); | |
250 | 250 | } | |
251 | 251 | ||
252 | - | .commit-info .commit { | |
252 | + | .commit-info .commit, .tag-box .tag { | |
253 | 253 | flex: 1 | |
254 | 254 | } | |
255 | 255 | ||
256 | - | .commit-info .message { | |
256 | + | .commit-info .message, .tag-box .tag-name { | |
257 | 257 | font-weight: bold; | |
258 | 258 | } | |
259 | 259 | ||
260 | - | .commit-info .author, .commit-info .date { | |
260 | + | .commit-info .author, .commit-info .date, .tag-box .date { | |
261 | 261 | display: inline-block; | |
262 | 262 | padding: 0.5em 0; | |
263 | 263 | } | |
264 | 264 | ||
265 | + | .tag-box .tag p { | |
266 | + | margin: 0; | |
267 | + | } | |
268 | + | ||
269 | + | .tag-box img { | |
270 | + | margin-right: 0.5em; | |
271 | + | } | |
272 | + | ||
265 | 273 | .commit-info img { | |
266 | 274 | max-width: 64px; | |
267 | 275 | max-height: 64px; | |
… | |||
307 | 315 | margin-right: 0.3em; | |
308 | 316 | } | |
309 | 317 | ||
310 | - | .commit-info .date { | |
318 | + | .commit-info .date, .tag-box .date { | |
311 | 319 | font-style: italic; | |
312 | 320 | margin-left: 1em; | |
313 | 321 | } | |
314 | 322 | ||
315 | - | .commit-info .author::before { | |
323 | + | .commit-info .author::before, .tag-box .author::before { | |
316 | 324 | content: "Authored by: "; | |
317 | 325 | } | |
318 | 326 |