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
#!/bin/bash | |
# GNU bash, version 4.4.20 | |
echo Assemble CLI v0.0.1 | |
echo "Select your Database" \ | |
select db in postgresql mongodb | |
do | |
if [ "$db" == "" ]; then |
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 'react' from 'React'; | |
import classNames from 'class-names'; | |
export default class FocusDetector extends React.Component { | |
constructor(props) { | |
super(props); | |
this.state= { | |
hideFocusOutline: true | |
}; | |
} |
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
@mixin flexContainer($centerContent:false, $wrapContent:true, $inlineFlex:false) { | |
display : flex; | |
flex-wrap : nowrap; | |
@if $inlineFlex == true { | |
display : inline-flex; | |
} | |
@if $wrapContent == true { | |
flex-wrap : wrap; |