···302302 return (
303303 // all this margin stuff is a highly unfortunate hack so that the border-l on blockquote is the height of just the text rather than the height of the block, which includes padding.
304304 <blockquote
305305- className={` blockquote py-0! mb-2! last:mb-3! sm:last:mb-4! first:mt-2! sm:first:pt-3 ${className} ${PubLeafletBlocksBlockquote.isMain(previousBlock?.block) ? "-mt-2!" : "mt-1!"}`}
305305+ className={` blockquote py-0! mb-2! ${className} ${PubLeafletBlocksBlockquote.isMain(previousBlock?.block) ? "-mt-2! pt-3!" : "mt-1!"}`}
306306 {...blockProps}
307307 >
308308 <TextBlock
-59
components/Blocks/QuoteEmbedBlock.tsx
···11-import { GoToArrow } from "components/Icons/GoToArrow";
22-import { ExternalLinkBlock } from "./ExternalLinkBlock";
33-import { Separator } from "components/Layout";
44-55-export const QuoteEmbedBlockLine = () => {
66- return (
77- <div className="quoteEmbedBlock flex sm:mx-4 mx-3 my-3 sm:my-4 text-secondary text-sm italic">
88- <div className="w-2 h-full bg-border" />
99- <div className="flex flex-col pl-4">
1010- <div className="quoteEmbedContent ">
1111- Hello, this is a long quote that I am writing to you! I am so excited
1212- that you decided to quote my stuff. I would love to take a moments and
1313- just say whatever the heck i feel like. Unforunately for you, it is a
1414- rather boring todo list. I need to add an author and pub name, i need
1515- to add a back link, and i need to link about text formatting, if we
1616- want to handle it.
1717- </div>
1818- <div className="quoteEmbedFooter flex gap-2 pt-2 ">
1919- <div className="flex flex-col leading-tight grow">
2020- <div className="font-bold ">This was made to be quoted</div>
2121- <div className="text-tertiary text-xs">celine</div>
2222- </div>
2323- </div>
2424- </div>
2525- </div>
2626- );
2727-};
2828-2929-export const QuoteEmbedBlock = () => {
3030- return (
3131- <div className="quoteEmbedBlock transparent-container sm:mx-4 mx-3 my-3 sm:my-4 text-secondary text-sm">
3232- <div className="quoteEmbedContent p-3">
3333- Hello, this is a long quote that I am writing to you! I am so excited
3434- that you decided to quote my stuff. I would love to take a moments and
3535- just say whatever the heck i feel like. Unforunately for you, it is a
3636- rather boring todo list. I need to add an author and pub name, i need to
3737- add a back link, and i need to link about text formatting, if we want to
3838- handle it.
3939- </div>
4040- <hr className="border-border-light" />
4141- <a
4242- className="quoteEmbedFooter flex max-w-full gap-2 px-3 py-2 hover:no-underline! text-secondary"
4343- href="#"
4444- >
4545- <div className="flex flex-col w-[calc(100%-28px)] grow">
4646- <div className="font-bold w-full truncate">
4747- This was made to be quoted and if it's very long, to truncate
4848- </div>
4949- <div className="flex gap-[6px] text-tertiary text-xs items-center">
5050- <div className="underline">lab.leaflet.pub</div>
5151- <Separator classname="h-2" />
5252- <div>celine</div>
5353- </div>
5454- </div>
5555- <div className=" shrink-0 pt-px bg-test w-5 h-5 rounded-full"></div>
5656- </a>
5757- </div>
5858- );
5959-};