We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e8a667 commit 4e35e47Copy full SHA for 4e35e47
website/src/catalog/RuleList.vue
@@ -52,8 +52,6 @@ const rules = computed(() => getRules(props.filter))
52
list-style: none;
53
padding: 0;
54
margin: 0;
55
- display: grid;
56
- gap: 1rem;
57
}
58
59
.rule-item {
@@ -160,12 +158,13 @@ const rules = computed(() => getRules(props.filter))
160
158
.v-move,
161
159
.v-enter-active,
162
.v-leave-active {
163
- transition: all 0.4s ease;
+ transition: all 0.4s cubic-bezier(0.59, 0.12, 0.34, 0.95);
164
165
.v-enter-from,
166
.v-leave-to {
167
opacity: 0;
168
- transform: scale(0.9);
+ transform: scaleY(0);
+ transform-origin: center top;
169
170
171
position: absolute;
0 commit comments