summaryrefslogtreecommitdiffstats
path: root/web_src/js
diff options
context:
space:
mode:
authorsilverwind <me@silverwind.io>2024-03-14 05:30:10 +0100
committerGitHub <noreply@github.com>2024-03-14 04:30:10 +0000
commiteb8c34fc367f324226625d39d0487f945269cd73 (patch)
tree91d4ba461a35cb687fa98cc574d4a150c73a3b1a /web_src/js
parent7a90e5954f8515329f20ff0e391130e1ee7b8864 (diff)
downloadgitea-eb8c34fc367f324226625d39d0487f945269cd73.tar.gz
gitea-eb8c34fc367f324226625d39d0487f945269cd73.zip
Tweak actions view sticky (#29781)
Add some space when the left side items are sticky due to scrolling the right side. <img width="419" alt="image" src="https://github.com/go-gitea/gitea/assets/115237/292e1b03-a071-4744-bb79-e50d109056c8">
Diffstat (limited to 'web_src/js')
-rw-r--r--web_src/js/components/RepoActionView.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/web_src/js/components/RepoActionView.vue b/web_src/js/components/RepoActionView.vue
index 9641431508..484a3677c5 100644
--- a/web_src/js/components/RepoActionView.vue
+++ b/web_src/js/components/RepoActionView.vue
@@ -524,7 +524,7 @@ export function initRepositoryActionView() {
width: 30%;
max-width: 400px;
position: sticky;
- top: 0;
+ top: 12px;
max-height: 100vh;
overflow-y: auto;
}