Skip to content

Instantly share code, notes, and snippets.

View chris-schmitz's full-sized avatar
💯

Christopher Schmitz chris-schmitz

💯
View GitHub Profile
@chris-schmitz
chris-schmitz / main.js
Created February 2, 2017 17:28
Pulling in Font-Awesome and Animate.css using Webpack
// This is the entry point used by webpack.config.js
// it's not necessarily how/where you need to pull in the styles, but
// it's where I typically pull them in.
import Vue from 'vue'
import App from './App.vue'
require('./global_style/main.scss')
@chris-schmitz
chris-schmitz / index.html
Created January 24, 2017 04:25
search bar/query builder
<!--
Note: This gist is from code I mocked up in the jsbin: http://jsbin.com/moqido/16/edit?js,output
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>