tangled
alpha
login
or
join now
t1c.dev
/
rocksky
forked from
rocksky.app/rocksky
2
fork
atom
A decentralized music tracking and discovery platform built on AT Protocol 🎵
2
fork
atom
overview
issues
pulls
pipelines
Increase embed cover size and radius
tsiry-sandratraina.com
1 month ago
39cc7bbf
28fa4c00
+10
-1
2 changed files
expand all
collapse all
unified
split
apps
embed
public
styles.css
src
embeds
ScrobbleEmbedPage.tsx
+9
apps/embed/public/styles.css
···
1772
1772
.max-h-\[250px\] {
1773
1773
max-height: 250px;
1774
1774
}
1775
1775
+
.max-h-\[280px\] {
1776
1776
+
max-height: 280px;
1777
1777
+
}
1775
1778
.min-h-screen {
1776
1779
min-height: 100vh;
1777
1780
}
···
1850
1853
}
1851
1854
.max-w-\[250px\] {
1852
1855
max-width: 250px;
1856
1856
+
}
1857
1857
+
.max-w-\[280px\] {
1858
1858
+
max-width: 280px;
1853
1859
}
1854
1860
.max-w-full {
1855
1861
max-width: 100%;
···
1953
1959
}
1954
1960
.rounded-\[8px\] {
1955
1961
border-radius: 8px;
1962
1962
+
}
1963
1963
+
.rounded-\[10px\] {
1964
1964
+
border-radius: 10px;
1956
1965
}
1957
1966
.rounded-box {
1958
1967
border-radius: var(--radius-box);
+1
-1
apps/embed/src/embeds/ScrobbleEmbedPage.tsx
···
18
18
target="_blank"
19
19
>
20
20
<img
21
21
-
className="max-h-[250px] max-w-[250px] rounded-[8px] mb-[5px]"
21
21
+
className="max-h-[280px] max-w-[280px] rounded-[10px] mb-[5px]"
22
22
src={props.scrobble.cover}
23
23
/>
24
24
</a>