Skip to content

Instantly share code, notes, and snippets.

diff --git a/node_modules/@vanilla-extract/next-plugin/dist/vanilla-extract-next-plugin.cjs.dev.js b/node_modules/@vanilla-extract/next-plugin/dist/vanilla-extract-next-plugin.cjs.dev.js
index 09e1996..fc27553 100644
--- a/node_modules/@vanilla-extract/next-plugin/dist/vanilla-extract-next-plugin.cjs.dev.js
+++ b/node_modules/@vanilla-extract/next-plugin/dist/vanilla-extract-next-plugin.cjs.dev.js
@@ -43,7 +43,8 @@ const createVanillaExtractPlugin = (pluginOptions = {}) => (nextConfig = {}) =>
isServer,
isDevelopment: dev,
future: nextConfig.future || {},
- experimental: nextConfig.experimental || {}
+ experimental: nextConfig.experimental || {},
@bradcerasani
bradcerasani / SassMeister-input.scss
Last active November 24, 2015 22:51
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
// =============================================
// # Settings > Colors
// =============================================
// Base
$_colorBaseGray: #76787a !default;
@bradcerasani
bradcerasani / SassMeister-input.scss
Created June 18, 2015 18:01
Generated by SassMeister.com.
// ----
// Sass (v3.4.14)
// Compass (v1.0.3)
// ----
// =============================================
// # Colors
// =============================================
// _settings.colors.scss
@bradcerasani
bradcerasani / index.html
Last active August 29, 2015 14:22
Apple Watch Visualization
<!doctype html>
<html>
<head>
<title>Apple Watch Visualization</title>
<style>
html,
body {
height: 100%;
margin: 0;
@bradcerasani
bradcerasani / SassMeister-input.scss
Created May 17, 2015 21:06
Generated by SassMeister.com.
// ----
// libsass (v3.2.4)
// ----
@for $i from 1 through 10 {
.starfield__shape--#{$i} {
background-image: url('{{ "starfield__shape--#{$i}.svg" | asset_url }}');
}
}
@bradcerasani
bradcerasani / overcast.fm.js
Created September 17, 2014 15:13
Enable play/pause with spacebar on Overcast.fm [requires dotjs]
// requires https://github.com/defunkt/dotjs
var player = $('#audioplayer').get(0);
$(document).keypress(function(e) {
if(e.which == 32) {
if (player.paused) {
player.play();
} else {
player.pause();
}