This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const { sync } = require('glob'); | |
| const { | |
| join, | |
| dirname, | |
| basename, | |
| } = require('path'); | |
| const yaml = require('js-yaml'); | |
| const { | |
| readFileSync, | |
| rmSync, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Colors for testing */ | |
| $violet: violet; | |
| $white: #FFF; | |
| /* End Colors for testing */ | |
| @mixin theme-selectors ($primary_color: $violet, $secondary_color: $white) { | |
| a:not(.button), | |
| button.button--unstyled, | |
| &.cp-hero-banner__container .button-secondary, | |
| .button--background-white { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @function rem($target: 16, $context: 10) { | |
| $newTarget: $target / ($target * 0 + 1); // Tip to remove the unit from target | |
| @return ($newTarget / $context) * 1rem; | |
| } | |
| $post-mobile : rem(669px); | |
| $tablet : rem(768); | |
| @media screen and (min-width: $post-mobile) { | |
| .test { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # how to run this thingy | |
| # create a file on your mac called setup.sh | |
| # run it from terminal with: sh setup.sh | |
| # heavily inspired by https://twitter.com/damcclean | |
| # https://github.com/damcclean/dotfiles/blob/master/install.sh | |
| #!/bin/bash | |
| set -euo pipefail |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {"v":"5.1.7","fr":25,"ip":0,"op":25,"w":100,"h":100,"nm":"_Plus to Check ICON - MORPH iOS-Tablet","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":2,"ty":4,"nm":"PLUS 2","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":0,"s":[25],"e":[25]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":3,"s":[25],"e":[100]},{"t":8}],"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":1,"s":[0],"e":[-47]},{"t":7.5}],"ix":10},"p":{"a":0,"k":[50,50,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":-1,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* ========================================================================== | |
| ABC.go.com | |
| OneId for ABC Brand | |
| 1. Fonts | |
| 2. Vendor | |
| 3. Helpers | |
| 4. Base | |
| 5. Modal |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Include it on your module's providers | |
| import { KeyboardProvider } from 'providers/keyboard/keyboard.ts' | |
| @NgModule({ | |
| providers: [ | |
| ... | |
| , KeyboardProvider | |
| ] | |
| }); |