tangled
alpha
login
or
join now
vt3e.cat
/
bbell
11
fork
atom
wip bsky client for the web & android
bbell.vt3e.cat
11
fork
atom
overview
issues
pulls
pipelines
feat(profile): restore margin-top on stats
vt3e.cat
1 week ago
56ae5cf2
e1e24b9a
verified
This commit was signed with the committer's
known signature
.
vt3e.cat
SSH Key Fingerprint:
SHA256:MaVgF6bXxDdD131G4rXizPh+sttp3IVsdPrj48HV0X0=
+4
-2
1 changed file
expand all
collapse all
unified
split
src
views
Profile
ProfileView.vue
+4
-2
src/views/Profile/ProfileView.vue
···
40
40
const toast = useToastStore()
41
41
const env = useEnvironmentStore()
42
42
43
43
-
const { element: statsBarRef, events: statsDragEvents, isDragging } = useDraggableScroll()
43
43
+
const { events: statsDragEvents, isDragging } = useDraggableScroll()
44
44
45
45
const profile = ref<AppBskyActorDefs.ProfileViewDetailed | null>(null)
46
46
const feed = ref<AppBskyFeedDefs.FeedViewPost[]>([])
···
746
746
margin-top: 0.75rem;
747
747
overflow-x: auto;
748
748
border-radius: 1rem;
749
749
-
transition: none;
750
749
margin: 0 -1.5rem;
750
750
+
margin-top: 0.75rem;
751
751
width: calc(100% + 3rem);
752
752
padding: 0 1.5rem;
753
753
+
754
754
+
transition: none;
753
755
754
756
scrollbar-width: none;
755
757
-ms-overflow-style: none;