A decentralized music tracking and discovery platform built on AT Protocol 🎵

Increase embed cover size and radius

+10 -1
+9
apps/embed/public/styles.css
··· 1772 .max-h-\[250px\] { 1773 max-height: 250px; 1774 } 1775 .min-h-screen { 1776 min-height: 100vh; 1777 } ··· 1850 } 1851 .max-w-\[250px\] { 1852 max-width: 250px; 1853 } 1854 .max-w-full { 1855 max-width: 100%; ··· 1953 } 1954 .rounded-\[8px\] { 1955 border-radius: 8px; 1956 } 1957 .rounded-box { 1958 border-radius: var(--radius-box);
··· 1772 .max-h-\[250px\] { 1773 max-height: 250px; 1774 } 1775 + .max-h-\[280px\] { 1776 + max-height: 280px; 1777 + } 1778 .min-h-screen { 1779 min-height: 100vh; 1780 } ··· 1853 } 1854 .max-w-\[250px\] { 1855 max-width: 250px; 1856 + } 1857 + .max-w-\[280px\] { 1858 + max-width: 280px; 1859 } 1860 .max-w-full { 1861 max-width: 100%; ··· 1959 } 1960 .rounded-\[8px\] { 1961 border-radius: 8px; 1962 + } 1963 + .rounded-\[10px\] { 1964 + border-radius: 10px; 1965 } 1966 .rounded-box { 1967 border-radius: var(--radius-box);
+1 -1
apps/embed/src/embeds/ScrobbleEmbedPage.tsx
··· 18 target="_blank" 19 > 20 <img 21 - className="max-h-[250px] max-w-[250px] rounded-[8px] mb-[5px]" 22 src={props.scrobble.cover} 23 /> 24 </a>
··· 18 target="_blank" 19 > 20 <img 21 + className="max-h-[280px] max-w-[280px] rounded-[10px] mb-[5px]" 22 src={props.scrobble.cover} 23 /> 24 </a>