this repo has no description
0
fork

Configure Feed

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

Have to use media-fg/bg for alt badges

+7 -1
+7 -1
src/components/status.css
··· 856 856 left: 8px; 857 857 font-size: 12px; 858 858 font-weight: bold; 859 + color: var(--media-fg-color); 860 + background-color: var(--media-bg-color); 859 861 border: var(--hairline-width) solid var(--media-outline-color); 860 862 mix-blend-mode: luminosity; 863 + opacity: 0.75; 861 864 862 865 &:before { 863 866 content: ''; ··· 866 869 } 867 870 868 871 &:is(:hover, :focus):not(:active) { 869 - transition: transform 0.15s ease-out; 872 + transition: 0.15s ease-out; 873 + transition-property: transform, opacity, mix-blend-mode; 870 874 transform: scale(1.15); 875 + opacity: 0.8; 876 + mix-blend-mode: normal; 871 877 } 872 878 } 873 879