diff options
author | André Jaenisch <Ryuno-Ki@users.noreply.github.com> | 2022-10-01 16:26:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-01 22:26:38 +0800 |
commit | 04e97b83115e7439d43c0ede5fe2d1b50d201c52 (patch) | |
tree | 073a20e9377c5197112327afd11d7a6f2cccb268 /web_src/less/features | |
parent | 726afe8a9e33128476e1dc85f262fe56f995d12c (diff) | |
download | gitea-04e97b83115e7439d43c0ede5fe2d1b50d201c52.tar.gz gitea-04e97b83115e7439d43c0ede5fe2d1b50d201c52.zip |
Refactor from Vue2 to Vue3 (#20044)
Close #19902
Diffstat (limited to 'web_src/less/features')
-rw-r--r-- | web_src/less/features/heatmap.less | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/web_src/less/features/heatmap.less b/web_src/less/features/heatmap.less index f551daf333..952d6f35ed 100644 --- a/web_src/less/features/heatmap.less +++ b/web_src/less/features/heatmap.less @@ -3,10 +3,16 @@ text-align: center; position: relative; min-height: 125px; - display: flex; align-items: center; justify-content: center; + // for the "Less" and "More" legend + .vch__legend .vch__legend div:first-child, + .vch__legend .vch__legend div:last-child { + display: inline-block; + padding: 0 5px; + } + > svg { width: 100%; } |