Commit f3ef0b30b0253ca9c58ee03ba0cc3e24d6f273dc

Authored by Augusto dos Anjos Almeida
1 parent 53178346

Fix shareicons for mobile

Showing 1 changed file with 54 additions and 0 deletions   Show diff stats
sass/style.scss
... ... @@ -152,3 +152,57 @@ form {
152 152 margin-bottom: 20px;
153 153 }
154 154 }
  155 +
  156 +@media (max-width: 480px) {
  157 + header {
  158 + height: auto;
  159 + h1 {
  160 + border-bottom: 0;
  161 + padding-bottom: 15px;
  162 + padding-top: 50px;
  163 + position: relative;
  164 + margin-bottom: 0;
  165 + }
  166 + #display-contrast {
  167 + position: absolute;
  168 + top: 10px;
  169 + }
  170 + }
  171 + .social {
  172 + &.top {
  173 + float: none;
  174 + margin-top: 0;
  175 + margin-bottom: 20px;
  176 + }
  177 + }
  178 + .select {
  179 + .proposal-category {
  180 + &:after {
  181 + content: "";
  182 + display: block;
  183 + clear: both;
  184 + }
  185 + }
  186 + .proposal-selection {
  187 + float: none;
  188 + margin: 4px 0 0 !important;
  189 + width: auto;
  190 + }
  191 + }
  192 + .proposal-header {
  193 + .show_body {
  194 + a {
  195 + display: block !important;
  196 + line-height: 1;
  197 + }
  198 + span {
  199 + display: inline !important;
  200 + }
  201 + }
  202 + .abstract {
  203 + p {
  204 + padding-bottom: 5px !important;
  205 + }
  206 + }
  207 + }
  208 +}
155 209 \ No newline at end of file
... ...