this repo has no description
0
fork

Configure Feed

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

Fix wonky filter bar button transitions

+7 -2
+7 -2
src/app.css
··· 2133 2133 text-decoration: none; 2134 2134 white-space: nowrap; 2135 2135 border: 2px solid transparent; 2136 - transition: all 0.3s ease-out; 2136 + transition: border-color 0.3s ease-out; 2137 2137 display: inline-flex; 2138 2138 align-items: center; 2139 2139 gap: 8px; 2140 2140 } 2141 - .filter-bar > a:is(:hover, :focus) { 2141 + .filter-bar > a:focus-visible { 2142 2142 border-color: var(--link-light-color); 2143 + } 2144 + @media (hover: hover) { 2145 + .filter-bar > a:hover { 2146 + border-color: var(--link-light-color); 2147 + } 2143 2148 } 2144 2149 .filter-bar > a > * { 2145 2150 vertical-align: middle;