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
.max-h-\[250px\] {
1773
max-height: 250px;
1774
}
0
0
0
1775
.min-h-screen {
1776
min-height: 100vh;
1777
}
···
1850
}
1851
.max-w-\[250px\] {
1852
max-width: 250px;
0
0
0
1853
}
1854
.max-w-full {
1855
max-width: 100%;
···
1953
}
1954
.rounded-\[8px\] {
1955
border-radius: 8px;
0
0
0
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>