mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 04:46:40 +07:00
added lab post lines
This commit is contained in:
parent
a553a06ac5
commit
bf16c0ca22
6 changed files with 33 additions and 5 deletions
14
src/components/lab/LabLine/index.tsx
Normal file
14
src/components/lab/LabLine/index.tsx
Normal file
|
@ -0,0 +1,14 @@
|
|||
import React, { FC } from 'react';
|
||||
import styles from './styles.module.scss';
|
||||
import { INodeComponentProps } from '~/redux/node/constants';
|
||||
import { useColorGradientFromString } from '~/utils/hooks/useColorGradientFromString';
|
||||
|
||||
interface Props extends INodeComponentProps {}
|
||||
|
||||
const LabLine: FC<Props> = ({ node: { title } }) => {
|
||||
const background = useColorGradientFromString(title, 5, 3, 270);
|
||||
|
||||
return <div className={styles.line} style={{ background }} />;
|
||||
};
|
||||
|
||||
export { LabLine };
|
7
src/components/lab/LabLine/styles.module.scss
Normal file
7
src/components/lab/LabLine/styles.module.scss
Normal file
|
@ -0,0 +1,7 @@
|
|||
@import "~/styles/variables";
|
||||
|
||||
.line {
|
||||
height: 4px;
|
||||
border-radius: $radius $radius 0 0;
|
||||
width: 100%;
|
||||
}
|
|
@ -3,6 +3,7 @@
|
|||
.wrap {
|
||||
@include outer_shadow;
|
||||
|
||||
position: relative;
|
||||
background-color: $lab_post_bg;
|
||||
cursor: pointer;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue