Compare View
Commits (4)
Showing
3 changed files
Show diff stats
src/app/content.scss
src/app/layout.scss
... | ... | @@ -519,4 +519,13 @@ ul li:last-child { |
519 | 519 | vertical-align: middle; |
520 | 520 | float: none; |
521 | 521 | } |
522 | +} | |
523 | + | |
524 | +// Links grandes quebram a linha em telas pequenas | |
525 | +a { | |
526 | + white-space: pre-wrap; /* css-3 */ | |
527 | + white-space: -moz-pre-wrap; /* Mozilla, since 1999 */ | |
528 | + white-space: -pre-wrap; /* Opera 4-6 */ | |
529 | + white-space: -o-pre-wrap; /* Opera 7 */ | |
530 | + word-wrap: break-word; /* Internet Explorer 5.5+ */ | |
522 | 531 | } |
523 | 532 | \ No newline at end of file | ... | ... |
src/app/pages/inicio/inicio.html
... | ... | @@ -88,7 +88,7 @@ |
88 | 88 | </div> |
89 | 89 | </div> |
90 | 90 | </section> |
91 | - <section class="section-event"> | |
91 | +<!-- <section class="section-event"> | |
92 | 92 | <div ng-if="pageInicio.events"> |
93 | 93 | <event-list events="pageInicio.events"></event-list> |
94 | 94 | </div> |
... | ... | @@ -106,7 +106,7 @@ |
106 | 106 | </div> |
107 | 107 | </div> |
108 | 108 | </div> |
109 | - </section> | |
109 | + </section> --> | |
110 | 110 | <section class="section-info" ng-if="pageInicio.loading || pageInicio.error"> |
111 | 111 | <div class="container"> |
112 | 112 | <div class="row"> | ... | ... |