diff options
author | Kerwin Bryant <kerwin612@qq.com> | 2025-04-17 18:32:41 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-17 10:32:41 +0000 |
commit | dd0caf7e163bff3ecd951a045d9cea47efaa7ed5 (patch) | |
tree | 4fb7e82d1290dd86979ab0507e8c57efffbb4b93 /web_src/js | |
parent | 42f45f1489942ee54a2fcbe589e3e19d7cf24d42 (diff) | |
download | gitea-dd0caf7e163bff3ecd951a045d9cea47efaa7ed5.tar.gz gitea-dd0caf7e163bff3ecd951a045d9cea47efaa7ed5.zip |
Fix various misalignments and overflows (#34227)
---------
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
Diffstat (limited to 'web_src/js')
-rw-r--r-- | web_src/js/components/RepoContributors.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web_src/js/components/RepoContributors.vue b/web_src/js/components/RepoContributors.vue index 7d4131a34d..969a869e0d 100644 --- a/web_src/js/components/RepoContributors.vue +++ b/web_src/js/components/RepoContributors.vue @@ -353,12 +353,12 @@ export default defineComponent({ </div> <div> <!-- Contribution type --> - <div class="ui dropdown jump" id="repo-contributors"> + <div class="ui floating dropdown jump" id="repo-contributors"> <div class="ui basic compact button tw-mr-0"> <span class="not-mobile">{{ locale.filterLabel }}</span> <strong>{{ locale.contributionType[type] }}</strong> <svg-icon name="octicon-triangle-down" :size="14"/> </div> - <div class="right menu"> + <div class="left menu"> <div :class="['item', {'selected': type === 'commits'}]" data-value="commits"> {{ locale.contributionType.commits }} </div> |