mirror of
https://github.com/20kaushik02/spotify-manager-web.git
synced 2026-01-25 16:14:06 +00:00
graph WiP
This commit is contained in:
0
src/components/Button/Button.module.css
Normal file
0
src/components/Button/Button.module.css
Normal file
12
src/components/Button/index.jsx
Normal file
12
src/components/Button/index.jsx
Normal file
@@ -0,0 +1,12 @@
|
||||
import React from 'react'
|
||||
import styles from "./Button.module.css";
|
||||
|
||||
const Button = ({ child }) => {
|
||||
return (
|
||||
<>
|
||||
{child}
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
||||
export default Button;
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user