refactor: Replace Webpack with Vite (#53)

This commit is contained in:
Razboy20
2024-01-24 19:40:30 -06:00
committed by GitHub
parent 1629c85818
commit 0560a01a55
112 changed files with 7322 additions and 32180 deletions

View File

@@ -1,59 +1,60 @@
@import 'src/views/styles/base.module.scss';
@use 'src/views/styles/colors.module.scss';
@use 'src/views/styles/fonts.module.scss';
.text {
font-family: 'Inter', sans-serif;
color: $charcoal;
color: colors.$charcoal;
line-height: initial;
}
.light_weight {
font-weight: $light_weight;
font-weight: fonts.$light_weight;
}
.regular_weight {
font-weight: $regular_weight;
font-weight: fonts.$regular_weight;
}
.normal_weight {
font-weight: $normal_weight;
font-weight: fonts.$normal_weight;
}
.semi_bold_weight {
font-weight: $semi_bold_weight;
font-weight: fonts.$semi_bold_weight;
}
.bold_weight {
font-weight: $bold_weight;
font-weight: fonts.$bold_weight;
}
.black_weight {
font-weight: $black_weight;
font-weight: fonts.$black_weight;
}
.x_small_size {
font-size: $x_small_size;
font-size: fonts.$x_small_size;
}
.xx_small_size {
font-size: $xx_small_size;
font-size: fonts.$xx_small_size;
}
.small_size {
font-size: $small_size;
font-size: fonts.$small_size;
}
.medium_size {
font-size: $medium_size;
font-size: fonts.$medium_size;
}
.large_size {
font-size: $large_size;
font-size: fonts.$large_size;
}
.x_large_size {
font-size: $x_large_size;
font-size: fonts.$x_large_size;
}
.xx_large_size {
font-size: $xx_large_size;
font-size: fonts.$xx_large_size;
}

View File

@@ -1,9 +1,12 @@
import classNames from 'classnames';
import React, { PropsWithChildren } from 'react';
import colors, { Color } from 'src/views/styles/colors.module.scss';
import fonts, { Size, Weight } from 'src/views/styles/fonts.module.scss';
import colors, { Color } from '@views/styles/colors.module.scss';
import { Size, Weight } from '@views/styles/fonts.module.scss';
import styles from './Text.module.scss';
/**
*
*/
export type TextProps = {
color?: Color;
weight?: Weight;