Fixed size of lightbox smalltitle
This commit is contained in:
parent
34c4b35207
commit
e29763a411
2
TODO.md
2
TODO.md
|
@ -11,8 +11,6 @@
|
||||||
- [Feat] 404, 500 pages
|
- [Feat] 404, 500 pages
|
||||||
- [Bugs] [iOS] Video doesn't seem to start
|
- [Bugs] [iOS] Video doesn't seem to start
|
||||||
- [Feat] Add languages to collectibles and pages previews
|
- [Feat] Add languages to collectibles and pages previews
|
||||||
- [Bugs] Folder icon is shrinking when title is too long https://v3.accords-library.com/en/folders/drakengard-1-3-shi-ni-itaru-aka
|
|
||||||
- [Bugs] Missing title fontsize on simple titles https://v3.accords-library.com/en/images/6656a0113fe38b258ef5f852
|
|
||||||
- [Feat] [RichTextContent] Handle relationship
|
- [Feat] [RichTextContent] Handle relationship
|
||||||
- [Bugs] Vollkorn doesn't support many languages
|
- [Bugs] Vollkorn doesn't support many languages
|
||||||
- [Bugs] [Scans] Lack of spacing above credits if no description (e.g: https://v3.accords-library.com/en/collectibles/dod-official-guide-book-complete-edition/scans)
|
- [Bugs] [Scans] Lack of spacing above credits if no description (e.g: https://v3.accords-library.com/en/collectibles/dod-official-guide-book-complete-edition/scans)
|
||||||
|
|
|
@ -96,7 +96,7 @@ const hasNavigation = previousImageHref || nextImageHref;
|
||||||
<div>
|
<div>
|
||||||
{
|
{
|
||||||
smallTitle ? (
|
smallTitle ? (
|
||||||
<h1>{title}</h1>
|
<h1 class="font-3xl">{title}</h1>
|
||||||
) : (
|
) : (
|
||||||
<AppLayoutTitle pretitle={pretitle} title={title} subtitle={subtitle} />
|
<AppLayoutTitle pretitle={pretitle} title={title} subtitle={subtitle} />
|
||||||
)
|
)
|
||||||
|
|
|
@ -36,6 +36,7 @@ const { icon = "material-symbols:folder", title, href } = Astro.props;
|
||||||
& > svg {
|
& > svg {
|
||||||
width: 24px;
|
width: 24px;
|
||||||
height: 24px;
|
height: 24px;
|
||||||
|
flex-shrink: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
& > #right {
|
& > #right {
|
||||||
|
|
Loading…
Reference in New Issue