mirror of
https://github.com/NebulaServices/Nebula.git
synced 2025-05-17 13:30:00 -04:00
format code and fix a tiny issue
This commit is contained in:
parent
d7bb56b815
commit
217d3a40db
2 changed files with 3 additions and 2 deletions
|
@ -49,7 +49,8 @@ export default function App() {
|
||||||
style={{
|
style={{
|
||||||
backgroundImage: bgImage ? `url(${bgImage})` : "none",
|
backgroundImage: bgImage ? `url(${bgImage})` : "none",
|
||||||
backgroundSize: "contain",
|
backgroundSize: "contain",
|
||||||
backgroundRepeat: "space"
|
backgroundRepeat: "repeat",
|
||||||
|
backgroundPosition: "center"
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{init && particlesUrl !== "none" && (
|
{init && particlesUrl !== "none" && (
|
||||||
|
|
|
@ -6,7 +6,7 @@ interface props {
|
||||||
|
|
||||||
export const PersonCard = (props) => {
|
export const PersonCard = (props) => {
|
||||||
return (
|
return (
|
||||||
<div class="flex flex-row mr-8">
|
<div class="mr-8 flex flex-row">
|
||||||
<p className="text-lg">
|
<p className="text-lg">
|
||||||
<a href={props.url} class="underline">
|
<a href={props.url} class="underline">
|
||||||
<img src={props.profile} className="h-12 w-12 rounded-md" />
|
<img src={props.profile} className="h-12 w-12 rounded-md" />
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue