Skip to content

Instantly share code, notes, and snippets.

@cubistcastle
cubistcastle / zendesk-please-dont-break-mobile.css
Last active December 28, 2015 08:39
Zendesk's Feedback Tab doesn't work so well on mobile. Here's a quick way to make it's modal dialog box play a little nicer.
/* --------------------------------------------------------------------------------------
## Add these styles to your zendesk dropbox custom css (/agent/#/admin/dropboxes)
----------------------------------------------------------------------------------------*/
#zenbox_container {
height: 620px;
margin: 0 auto;
position: relative;
text-align: left;
width: 100%;
@cubistcastle
cubistcastle / scss-and-compass-snippets.scss
Last active December 19, 2015 22:59
SCSS + Compass in Action
/* ---------------------------
# Transitions
http://compass-style.org/reference/compass/css3/transition/
--------------------------- */
// single-transition($property, $duration, $function, $delay)
@include single-transition(all, 0.2s, cubic-bezier(.17,.67,.83,.67), 100ms);
/* ---------------------------