Add files via upload

This commit is contained in:
Andros Fenollosa
2023-01-02 11:04:42 +01:00
committed by GitHub
commit b53c8aa759
23 changed files with 679 additions and 0 deletions

View File

@ -0,0 +1,3 @@
// -----------------------------------------------------------------------------
// This file contains all application-wide Sass mixins.
// -----------------------------------------------------------------------------

View File

@ -0,0 +1,14 @@
// -----------------------------------------------------------------------------
// This file contains all application-wide Sass variables.
// -----------------------------------------------------------------------------
// Sizes
/// @type Length
$max-width: 1180px !default
/// Breakpoints map
$breakpoints: ("small": 320px, "medium": 768px, "large": 1024px) !default
// @media all and (min-width: map-get($breakpoints, 'medium'))
// Colours
$color-black: #000
$color-white: #fff