AuburnBigEvent / BigEvent

Auburn University SGA Big Event application designed for COMP 4710 senior design project.
MIT License
0 stars 2 forks source link

Include custom css last, keep signin btns from overflowing on resize #36

Closed CoryG89 closed 10 years ago

CoryG89 commented 10 years ago

Going to go ahead and merge this, the CSS we put into our styles.css should be last, dunno why I had it above the insertion point for our stylesheets included in our views. Also when the signin page would be resized the buttons would overflow outside of their container, this change keeps that from happening. The bootstrap class text-right applies the CSS text-align: right whereas the pull-right class applies the CSS float: right. The text-right class works for input elements and buttons as well and should be preferred over pull-right because of this reason.