Skip to content

Instantly share code, notes, and snippets.

View Stafie's full-sized avatar

Anatolie Stafie Stafie

  • Epic Coders
  • Timisoara, Romania
View GitHub Profile
@Stafie
Stafie / iOS fix for body scrolling underneath a modal,popover element
Last active December 30, 2015 11:29
iOS fix for body scrolling underneath a modal/popover element
//http://uxebu.com/blog/2011/11/21/fixing-webkit-overflow-scroll-when-overlaid-by-element/
body {
overflow: scroll;
-webkit-overflow-scrolling: touch;
}
.modal {
overflow: scroll;
-webkit-overflow-scrolling: touch;
// helper for making element hit area bigger. especially useful for small links / icons / btns / etc
%e-bigger-hitArea {
position: relative;
&:after {
content: "";
padding: 10px;
position: absolute;
left: -10px;
top: -10px;
width: 100%;
We couldn’t find that file to show.
@Stafie
Stafie / fullcalendar.css
Created August 11, 2017 21:26
fullcalendar minSegmentHeight option
/*!
* FullCalendar v0.0.0 Stylesheet
* Docs & License: https://fullcalendar.io/
* (c) 2017 Adam Shaw
*/
.fc {
direction: ltr;
text-align: left;