This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*! | |
* FullCalendar v0.0.0 Stylesheet | |
* Docs & License: https://fullcalendar.io/ | |
* (c) 2017 Adam Shaw | |
*/ | |
.fc { | |
direction: ltr; | |
text-align: left; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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%; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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; |