@use "@styles/abstracts/functions" as fun; @use "@styles/abstracts/mixins" as mix; @use "@styles/abstracts/variables" as var; @use "sass:math"; :root { --spacing-2xs: clamp( #{math.div(var.spacing("2xs"), 1.2)}, 1ex + 1vw, #{var.spacing("2xs")} ); --spacing-xs: clamp( #{math.div(var.spacing("xs"), 1.2)}, 1ex + 1vw, #{var.spacing("xs")} ); --spacing-sm: clamp( #{math.div(var.spacing("sm"), 1.2)}, 1ex + 1vw, #{var.spacing("sm")} ); --spacing-md: clamp(#{var.spacing("sm")}, 1ex + 2vw, #{var.spacing("md")}); --spacing-lg: clamp(#{var.spacing("md")}, 1ex + 3vw, #{var.spacing("lg")}); --spacing-xl: clamp(#{var.spacing("lg")}, 1ex + 4vw, #{var.spacing("xl")}); --spacing-2xl: clamp(#{var.spacing("xl")}, 1ex + 5vw, #{var.spacing("2xl")}); --spacing-3xl: clamp(#{var.spacing("2xl")}, 1ex + 6vw, #{var.spacing("3xl")}); --toolbar-size: #{fun.convert-px(65)}; } @include mix.media("screen") { @include mix.dimensions("sm") { :root { --toolbar-size: 0px; } } } 9d7c8c51e492d201daeacb'/> Collection of small JS/React/Angular applications.Armand Philippot
aboutsummaryrefslogtreecommitdiffstats
path: root/public/projects/angular-small-apps/CHANGELOG.md
blob: 7e393d13f20492bdfb1e92b8d0359888597e0c06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Changelog

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [2.0.1](https://github.com/ArmandPhilippot/angular-small-apps/compare/v2.0.0...v2.0.1) (2022-02-17)


### Bug Fixes

* change schema path in angular config ([6bd1f16](https://github.com/ArmandPhilippot/angular-small-apps/commit/6bd1f167743469c37aea3fb26c152dba538914f2))

## 2.0.0 (2022-02-17)


### ⚠ BREAKING CHANGES

* restructure apps as a monorepo

### Features

* handle recipe edition ([096784f](https://github.com/ArmandPhilippot/angular-small-apps/commit/096784f13e5e119c40abb6478ca39fc7228f0a13))
* **recipes:** allow user to save searched recipes ([6c72c50](https://github.com/ArmandPhilippot/angular-small-apps/commit/6c72c50c23fcc81c11eb8732517a270d8bfc54d6))


### Bug Fixes

* **recipes:** print recipes even if local storage is empty ([225ca2a](https://github.com/ArmandPhilippot/angular-small-apps/commit/225ca2af80ca52a1ed153bd45aa5110572b4b06a))


### build

* restructure apps as a monorepo ([0493437](https://github.com/ArmandPhilippot/angular-small-apps/commit/0493437003ed9ca247eb14465a8bd522d6003f44))