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 make-long-shadow($color, $recursions: 200) { | |
| $shadows: 0 0 $color; | |
| @for $i from 1 through $recursions { | |
| $shadows: $shadows, #{$i}px #{$i}px #{$color}; | |
| } | |
| @return $shadows; | |
| } |
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 long-shadow($color, $recursions: 200) { | |
| $shadows: 0 0 $color; | |
| @for $i from 1 through $recursions { | |
| $shadows: $shadows, #{$i}px #{$i}px #{$color}; | |
| } | |
| @return $shadows; | |
| } |
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
| /** | |
| * @see https://eslint.org/docs/rules/ | |
| */ | |
| module.exports = { | |
| extends: 'eslint:recommended', | |
| root: true, | |
| rules: { | |
| 'arrow-spacing': 'error', | |
| 'block-spacing': 'error', | |
| camelcase: 'error', |
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
| /** | |
| * @see https://stylelint.io/user-guide/rules/ | |
| * @see https://www.npmjs.com/package/stylelint-scss | |
| * @see https://www.npmjs.com/package/stylelint-config-recommended-scss | |
| */ | |
| module.exports = { | |
| extends: ['stylelint-config-recommended-scss'], | |
| rules: { | |
| 'font-family-name-quotes': 'always-where-recommended', | |
| indentation: [4, { baseIndentLevel: 1 }], |
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
| <template> | |
| <section class="resource-create"> | |
| <h2>Create Resource</h2> | |
| <cobra-alerts/> | |
| <cobra-card title="Resource"> | |
| <form @submit.prevent="onSubmit"> | |
| <div class="form__groups"> | |
| <b-form-group> |