diff --git a/src/app/components/feature/BudgetGroups.vue b/src/app/components/feature/BudgetGroups.vue index b99ed4f..ae7d270 100644 --- a/src/app/components/feature/BudgetGroups.vue +++ b/src/app/components/feature/BudgetGroups.vue @@ -9,7 +9,14 @@ {{ month }} @@ -137,6 +144,12 @@ const reorder = (evt: ReorderEvent) => { padding-right: 20px; padding-bottom: 5px; + position: sticky; + position: -webkit-sticky; + top: 0px; + background: var(--app-background); + border: 2px var(--app-background); + &.current { font-weight: var(--font-weight-l); } @@ -149,6 +162,16 @@ const reorder = (evt: ReorderEvent) => { margin-top: 0; } } + + &.start { + border-bottom-left-radius: var(--border-radius-l); + padding-left: 8px; + } + + &.end { + border-bottom-right-radius: var(--border-radius-l); + padding-right: 8px; + } } .addGroupBtn {