graph WiP

This commit is contained in:
2024-12-30 00:56:24 -07:00
parent 6d044d34d5
commit ad25ce7f05
15 changed files with 239 additions and 34 deletions

View File

View File

@@ -0,0 +1,12 @@
import React from 'react'
import styles from "./Button.module.css";
const Button = ({ child }) => {
return (
<>
{child}
</>
)
}
export default Button;

View File

@@ -4,10 +4,12 @@
flex-direction: column;
align-items: center;
justify-content: space-around;
position: sticky;
top: 0;
left: 0;
height: 100vh;
width: 10vw;
position: sticky;
position: -webkit-sticky;
top: 0;
left: 0;
overflow: auto;
padding: var(--mb-3);
}