Skip to content

Instantly share code, notes, and snippets.

View yukoss's full-sized avatar
💭
I may be slow to respond.

Konstantin Y. yukoss

💭
I may be slow to respond.
View GitHub Profile
@yukoss
yukoss / animate.styl
Created December 12, 2017 14:46
Animate 💩
@media (min-width 1280px)
.fadeIn
animation-name fadeIn
animation-duration .3s
animation-timing-function linear
.fadeOut
animation-name fadeOut
animation-duration .3s
animation-timing-function linear
@yukoss
yukoss / index.js
Last active September 22, 2017 13:20
Clear error message action
// Update in Action/message.js
function clearErrorMessage() {
return { type: 'CLEAR_ERROR_MESSAGE', message: '' }
}
export { errorMessage, clearErrorMessage }
// Update import
import { errorMessage, clearErrorMessage } from '../../Actions/message';
@yukoss
yukoss / index.html
Created September 9, 2017 09:58
Suggestions with a scrollbar
<h2>Suggestions with a scrollbar</h2>
<div id="app"></div>
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* Development config overrides & db credentials
*
* Our database credentials and any environment-specific overrides
*
* @package Focus Lab Master Config
* @version 1.1.1
* @author Focus Lab, LLC <dev@focuslabllc.com>
*/