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 0ef17a4 commit 86de0ddCopy full SHA for 86de0dd
src/lib/custom-animations/util.ts
@@ -5,9 +5,9 @@
5
// - The count is going down and is 1 less than a multiple of 100
6
export function decideShouldRoll(isSet: boolean, count: number) {
7
let shouldRoll = false
8
- if (!isSet && count === 0) {
+ if (!isSet && count === 1) {
9
shouldRoll = true
10
- } else if (count > 0 && count < 1000) {
+ } else if (count > 1 && count < 1000) {
11
12
} else if (count > 0) {
13
const mod = count % 100
src/view/com/util/post-ctrls/PostCtrls.tsx
@@ -244,6 +244,7 @@ let PostCtrls = ({
244
a.flex_row,
245
a.justify_center,
246
a.align_center,
247
+ a.overflow_hidden,
248
{padding: 5},
249
(pressed || hovered) && t.atoms.bg_contrast_25,
250
],
0 commit comments