Skip to content

Instantly share code, notes, and snippets.

View kudinovfedor's full-sized avatar

Fedir Kudinov kudinovfedor

View GitHub Profile
@kudinovfedor
kudinovfedor / iife-dom-content-loaded.js
Created April 7, 2019 18:56
IIFE + DOMContentLoaded
((w, d, $) => {
'use strict';
d.addEventListener('DOMContentLoaded', () => {
});
$(() => {
});
@kudinovfedor
kudinovfedor / _text-helpers.scss
Last active March 7, 2019 08:14
Text style helpers (SCSS)
.text {
&-left {
text-align: left;
}
&-right {
text-align: right;
}
&-center {