mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-14 13:17:24 +01:00
Fix hover dropdown padding & stat allocation chip always showing
This commit is contained in:
@@ -74,7 +74,7 @@
|
|||||||
<h2>
|
<h2>
|
||||||
{{ $t('statPoints') }}
|
{{ $t('statPoints') }}
|
||||||
<div
|
<div
|
||||||
v-if="user.stats.points || userLevel100Plus"
|
v-if="user.stats.points > 0"
|
||||||
class="counter badge badge-pill"
|
class="counter badge badge-pill"
|
||||||
>
|
>
|
||||||
{{ pointsRemaining }} {{ $t('pointsAvailable') }}
|
{{ pointsRemaining }} {{ $t('pointsAvailable') }}
|
||||||
@@ -779,7 +779,7 @@ export default {
|
|||||||
}
|
}
|
||||||
|
|
||||||
::v-deep .selectListItem .dropdown-item {
|
::v-deep .selectListItem .dropdown-item {
|
||||||
padding: 12px 16px !important;
|
padding: 0 16px !important;
|
||||||
height: auto !important;
|
height: auto !important;
|
||||||
white-space: normal;
|
white-space: normal;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
@@ -1227,7 +1227,7 @@ export default {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
box-shadow: 0 2px 8px 0 rgba(26, 24, 29, 0.2);
|
box-shadow: 0 2px 8px 0 rgba(26, 24, 29, 0.2);
|
||||||
padding: 24px 16px;
|
padding: 24px 0;
|
||||||
margin-top: 4px;
|
margin-top: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1240,7 +1240,7 @@ export default {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.selectListItem .dropdown-item {
|
.selectListItem .dropdown-item {
|
||||||
padding: 0 !important;
|
padding: 0 16px !important;
|
||||||
height: auto !important;
|
height: auto !important;
|
||||||
white-space: normal;
|
white-space: normal;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|||||||
Reference in New Issue
Block a user