the browser-facing portion of osu!
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 28 lines 610 B view raw
1// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the GNU Affero General Public License v3.0. 2// See the LICENCE file in the repository root for full licence text. 3 4.sortable-handle { 5 cursor: move; 6 7 &--profile-page-extra { 8 position: absolute; 9 right: 0; 10 top: 0; 11 margin-right: var(--dragdrop-margin); 12 font-size: 18px; // icon size 13 } 14 15 &--score-pin { 16 display: none; 17 18 @media @desktop { 19 display: flex; 20 align-items: center; 21 width: var(--pin-sortable-handle-width); 22 } 23 24 .play-detail-list--menu-active & { 25 pointer-events: none; 26 } 27 } 28}