Created header and the start of a shopping cart.

This commit is contained in:
2019-12-02 23:46:24 +01:00
parent 36db97a7d6
commit 6f15c53cca
36 changed files with 8341 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
.flex {
display: flex;
}
.justify-content-center {
justify-content: center;
}
.align-items-center {
align-items: center;
}
.flex-direction-column {
display: flex;
flex-direction: column;
}

View File

@@ -0,0 +1 @@
@import './frontend/assets/fonts/planetposen-icons/style.scss';

6
frontend/styles/normalize.scss vendored Normal file
View File

@@ -0,0 +1,6 @@
body {
margin: 0;
padding: 0;
font-family: sans-serif;
}

View File

@@ -0,0 +1,3 @@
$green: #5cdb95;
$text-color: #05386B;