fix: refs #6654 fix css
gitea/salix-front/pipeline/head This commit looks good Details

This commit is contained in:
Jorge Penadés 2024-01-29 10:25:59 +01:00
parent d86ac6f31b
commit 0edfe24a85
1 changed files with 7 additions and 2 deletions

View File

@ -24,10 +24,15 @@ onUnmounted(() => {
</slot> </slot>
</QToolbar> </QToolbar>
</template> </template>
<style scoped> <style lang="scss" scoped>
.sticky { .sticky {
position: sticky; position: sticky;
top: 60px; top: 62px;
z-index: 1; z-index: 1;
} }
@media (max-width: $breakpoint-xs) {
.sticky {
top: 90px;
}
}
</style> </style>