Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

style: remove component-specific font variables #273

Merged
merged 4 commits into from
Jul 15, 2024
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 0 additions & 46 deletions src/styles/fonts.scss
Original file line number Diff line number Diff line change
Expand Up @@ -21,52 +21,6 @@ $normal: normal;
$italic: italic;
$underline: underline;

//Estilos de fonte para botão primário
$buttonFontColor: rgb(253, 253, 253);
$buttonFontFamily: $primaryFont;
$buttonFontSize: $sm;
$buttonFontWeight: $bold;
$buttonFontStyle: $normal;
$buttonLineHeight: 24px;

//Estilos de fonte para botão secundário
$secondaryButtonFontColor: rgb(0, 52, 89);
// $secondaryButtonFontFamily: $tertiaryFont;
$secondaryButtonFontSize: $lg;
$secondaryButtonFontWeight: $regular;
$secondaryButtonFontStyle: $normal;

//Estilos de fonte para os inputs da página de Contato
$inputFontColor: rgb(141, 141, 141);
// $inputFontFamily: $contactPageFont;
$inputFontSize: 1.2rem;
$inputFontStyle: $normal;
$inputFontWeight: $regular;
$inputLineHeight: 2rem;

//Estilos de fonte para a navegação do header
$headerFontColor: rgb(0, 52, 89);
$headerFontFamily: $primaryFont;
$headerFontSize: $sm;
$headerFontStyle: $normal;
$headerFontWeight: $regular;
$headerLineHeight: 2.4rem;

//Estilos de fonte para a navegação do footer
$footerFontColor: rgb(255, 255, 255);
$footerFontFamily: $primaryFont;
$footerFontSize: 1.5rem;
$footerFontStyle: $normal;
$footerFontWeight: $regular;
$footerLetterSpacing: -0.205px;

//Estilos para textos de descirção do Pet em sua página
$descriptionPetFontFamily: $primaryFont;
$descriptionPetFontSize: $xs;
$descriptionPetFontStyle: $normal;
$descriptionPetFonteWeight: $medium;
$descriptionLineHeight: 2rem;

//função para criar estilos tipográficos em geral
@function get-font-style($color, $family, $weight, $size, $style) {
@return (
Expand Down