mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-05-25 15:15:52 +00:00
fix(ui): make sure three columns of rewards are displayed + fix rewards top margin when no custom reward exists (#12257)
This commit is contained in:
parent
3a4abac8b0
commit
ce4bbe5552
1 changed files with 3 additions and 2 deletions
|
|
@ -80,6 +80,7 @@
|
|||
<draggable
|
||||
ref="tasksList"
|
||||
class="sortable-tasks"
|
||||
v-if="taskList.length > 0"
|
||||
:options="{disabled: activeFilter.label === 'scheduled' || !isUser, scrollSensitivity: 64}"
|
||||
:delay-on-touch-only="true"
|
||||
:delay="100"
|
||||
|
|
@ -168,7 +169,7 @@
|
|||
@supports (display: grid) {
|
||||
display: grid;
|
||||
justify-content: center;
|
||||
grid-column-gap: 16px;
|
||||
grid-column-gap: 10px;
|
||||
grid-row-gap: 4px;
|
||||
grid-template-columns: repeat(auto-fill, 94px);
|
||||
}
|
||||
|
|
@ -177,7 +178,7 @@
|
|||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
& > div {
|
||||
margin: 0 16px 4px 0;
|
||||
margin: 0 10px 4px 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue