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
| import Component from '@glimmer/component'; | |
| import { action } from '@ember/object'; | |
| import { tracked } from '@glimmer/tracking'; | |
| import { guidFor } from '@ember/object/internals'; | |
| export default class Accordion extends Component { | |
| @tracked isActive = false | |
| accordionId = 'accordion-' + guidFor(this); |
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
| body { | |
| background: red; | |
| } | |
| .st-toolbar { | |
| display: flex; | |
| width: 100%; | |
| justify-content: space-between; | |
| } |
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
| import { Component, Element, State, h } from '@stencil/core'; | |
| import { hasSlot } from '../../utilities/slot'; | |
| /** | |
| * @since 2.0 | |
| * @status stable | |
| * | |
| * @slot - The card's body. | |
| * @slot header - The card's header. | |
| * @slot footer - The card's footer. |
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
| @-moz-document domain("www.ejustice.just.fgov.be") { | |
| /* Stylesheet to make staatsblad more legible */ | |
| frame { | |
| border: none; | |
| } | |
| a { | |
| color: #468FFA; | |
| } |
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
| Now using node v12.14.1 (npm v6.13.6) | |
| johanronsse@Johans-iMac spark-backoffice-prototype % npm i | |
| > [email protected] install /Users/johanronsse/Sites/spark-backoffice-prototype/node_modules/glob-watcher/node_modules/fsevents | |
| > node install.js | |
| SOLINK_MODULE(target) Release/.node | |
| CXX(target) Release/obj.target/fse/fsevents.o | |
| SOLINK_MODULE(target) Release/fse.node |
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
| $theme-color: #000; | |
| $theme-name: "|customer-a"; | |
| *[data-theme="#{$theme-name}"] button { | |
| color: $theme-color; | |
| } |
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
| # htaccess config to redirect SPAs to index.html | |
| RewriteEngine On | |
| RewriteCond %{REQUEST_FILENAME}.html -f | |
| RewriteRule !.*\.html$ %{REQUEST_FILENAME}.html [L] | |
| RewriteCond %{REQUEST_FILENAME} !-f | |
| RewriteRule . index.html |
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
| tree . | |
| . | |
| |-- CONTRIBUTING.md | |
| |-- LICENSE.md | |
| |-- README.md | |
| |-- addon | |
| | |-- components | |
| | | |-- alert.hbs | |
| | | |-- alert.js | |
| | | |-- avatar.hbs |
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
| import Component from '@glimmer/component'; | |
| export default class extends Component { | |
| } |