This repository has no description
0

Configure Feed

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

remove extra title

+2 -12
+1 -11
app/src/app/layout.tsx
··· 48 48 <ThemeProvider> 49 49 <header style={{ 50 50 display: 'flex', 51 - justifyContent: 'space-between', 51 + justifyContent: 'center', 52 52 alignItems: 'center', 53 53 padding: '0.5rem 1rem', 54 54 backgroundColor: 'var(--card-background)', 55 55 borderBottom: '1px solid var(--tile-border)' 56 56 }}> 57 - <div style={{ display: 'flex', alignItems: 'center', gap: '1rem' }}> 58 - <a href="/" style={{ 59 - textDecoration: 'none', 60 - fontWeight: 'bold', 61 - color: 'var(--primary-color)', 62 - fontSize: '1.25rem' 63 - }}> 64 - im.flushing 65 - </a> 66 - </div> 67 57 <ClientOnly> 68 58 <div style={{ display: 'flex', alignItems: 'center', gap: '1rem' }}> 69 59 <ProfileSearch />
+1 -1
app/src/components/ProfileSearch.module.css
··· 1 1 .searchContainer { 2 2 position: relative; 3 - width: 260px; 3 + width: 300px; 4 4 } 5 5 6 6 .searchForm {