1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 12:56:41 +07:00

fixed background repeat on square

This commit is contained in:
Fedor Katurov 2022-01-09 21:25:17 +07:00
parent c0ece70f89
commit 0a5caf6bda
3 changed files with 7 additions and 5 deletions

View file

@ -1,12 +1,12 @@
import React, { FC } from 'react';
import styles from './styles.module.scss';
import { Group } from '~/components/containers/Group';
import { Square } from '~/components/lab/LabSquare';
import { LabSquare } from '~/components/lab/LabSquare';
interface IProps {}
const LabBanner: FC<IProps> = () => (
<Square className={styles.wrap}>
<LabSquare className={styles.wrap}>
<Group>
<div className={styles.title}>Лаборатория!</div>
@ -19,7 +19,7 @@ const LabBanner: FC<IProps> = () => (
</p>
</Group>
</Group>
</Square>
</LabSquare>
);
export { LabBanner };