Kafetegirako atalaren lehen bertsioa sortzen du (#1)

* feat: backean kafetegia sortzen du

* helbidea kentzen du

* feat: kafetegirako desktop bista sortzen du

* Nabigazioa sortzen du

* chore: tsconfig fitxategia sortzen du

* refactor: extract component

* feat: kolorea ematen dio atal bakoitzari

* chore: koloreak sortzen ditu

* fix: nabigazioa konpontzen du

* feat: mugikor menua sortzen du

* fix: tipografia aldatzen du

* feat: kafetegiko menua margotzen du

* feat: produktu zerrenda erakusten du
This commit is contained in:
Aitor Urrutia
2022-03-18 23:36:22 +01:00
committed by GitHub
parent 47862f25bd
commit a73cfcfdf4
30 changed files with 1607 additions and 385 deletions

View File

@@ -1,5 +1,6 @@
import { createGlobalStyle, css } from 'styled-components';
import { font } from './theme';
import { font, fontWeight } from './theme';
import { colors } from './theme/colors';
/**
* Inicializa estilos base
@@ -197,12 +198,11 @@ export const GlobalStyles = createGlobalStyle`
${reboot};
body {
font-family: 'Work Sans', sans-serif;
font-family: 'Almarai', sans-serif;
${font.base()}
font-weight: 600;
font-weight: ${fontWeight.bold};
background-color: #fd3447;
color: #fff;
color: ${colors.beltza};
}
`;