Updating packages.

This commit is contained in:
2022-07-07 05:01:47 +00:00
parent 9813e083c7
commit 5b4756f46b
7 changed files with 1596 additions and 1515 deletions

View File

@ -1,5 +1,5 @@
import React, { FC } from "react";
import "./style.sass";
import "./style.scss";
type TCardProps = {
/**

View File

@ -1 +0,0 @@
.Card{background-color:#20b0f3;border-radius:10px;border:3px solid #20b0f3;color:#ffffff;font-weight:700;margin:10px;display:flex;flex-direction:column;min-width:500px;max-width:500px}.Card .Title{padding:15px 0;display:flex;justify-content:center}.Card .Content{flex:1;padding:30px;background-color:#ffffff;color:#000000}

View File

@ -1,22 +0,0 @@
.Card
background-color: #20b0f3
border-radius: 10px
border: 3px solid #20b0f3
color: #ffffff
font-weight: 700
margin: 10px
display: flex
flex-direction: column
min-width: 500px
max-width: 500px
.Title
padding: 15px 0
display: flex
justify-content: center
.Content
flex: 1
padding: 30px
background-color: #ffffff
color: #000000

View File

@ -1,4 +1,4 @@
.Card {
.Card{
background-color: #20b0f3;
border-radius: 10px;
border: 3px solid #20b0f3;
@ -9,17 +9,17 @@
flex-direction: column;
min-width: 500px;
max-width: 500px;
}
.Card .Title {
padding: 15px 0;
display: flex;
justify-content: center;
}
.Card .Content {
flex: 1;
padding: 30px;
background-color: #ffffff;
color: #000000;
.Title {
padding: 15px 0;
display: flex;
justify-content: center;
}
.Content {
flex: 1;
padding: 30px;
background-color: #ffffff;
color: #000000;
}
}