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 CATEGORIES = [ | |
| { | |
| id: '3958dc9e-712f-4377-85e9-fec4b6a6442a', | |
| name: 'Patriotic Administration Center', | |
| }, | |
| { | |
| id: '3958dc9e-742f-4377-85e9-fec4b6a6442a', | |
| name: 'Orbital Cannons', | |
| }, | |
| { |
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
| [ | |
| { | |
| "year": "1983", | |
| "name": "Kill 'Em All (Remastered)", | |
| "artist": "Metallica", | |
| "songs": [ | |
| { | |
| "number": "1", | |
| "name": "Hit The Lights", | |
| "duration": "4:15" |
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
| //theming sass https://medium.com/@dmitriy.borodiy/easy-color-theming-with-scss-bc38fd5734d1 | |
| // MIXINS | |
| @mixin themify($themes: $themes) { | |
| @each $theme, $map in $themes { | |
| .container--#{$theme} & { | |
| $theme-map: () !global; | |
| @each $key, $submap in $map { | |
| $value: map-get(map-get($themes, $theme), '#{$key}'); | |
| $theme-map: map-merge($theme-map, ($key: $value)) !global; |