mirror of
https://github.com/go-gitea/gitea.git
synced 2026-05-01 23:51:11 +00:00
This PR standardizes left/right two-child frontend layouts on `flex-left-right` and removes ad-hoc `tw-justify-between` combinations. The goal is consistent wrapping + spacing behavior under narrow widths with less utility-class churn. Also: remove useless "flex-center-wrap", slightly improve some templates (no visual change, tested) --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: wxiaoguang <2114189+wxiaoguang@users.noreply.github.com> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
15 lines
552 B
Handlebars
15 lines
552 B
Handlebars
{{if or .result.Language (not .result.UpdatedUnix.IsZero)}}
|
|
<div class="ui bottom attached table segment flex-left-right">
|
|
<div class="tw-flex tw-items-center tw-ml-4">
|
|
{{if .result.Language}}
|
|
<i class="color-icon tw-mr-2" style="background-color: {{.result.Color}}"></i>{{.result.Language}}
|
|
{{end}}
|
|
</div>
|
|
<div class="tw-mr-4">
|
|
{{if not .result.UpdatedUnix.IsZero}}
|
|
<span class="ui grey text">{{ctx.Locale.Tr "explore.code_last_indexed_at" (DateUtils.TimeSince .result.UpdatedUnix)}}</span>
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
{{end}}
|