1
0
mirror of https://github.com/karl0ss/homepage.git synced 2025-05-11 01:11:31 +01:00

Include right margin on greeting widget

Closes 

Co-Authored-By: David Moor <dave@ducks-n-tworms.co.uk>
This commit is contained in:
shamoon 2023-05-26 08:21:02 -07:00
parent 1f85da934f
commit 5850a48ec9

@ -13,7 +13,7 @@ export default function Greeting({ options }) {
if (options.text) { if (options.text) {
return ( return (
<div className="flex flex-row items-center justify-start"> <div className="flex flex-row items-center justify-start">
<span className={`text-theme-800 dark:text-theme-200 ${textSizes[options.text_size || "xl"]}`}> <span className={`text-theme-800 dark:text-theme-200 mr-3 ${textSizes[options.text_size || "xl"]}`}>
{options.text} {options.text}
</span> </span>
</div> </div>