Commit be1cde90cdbfeca27a9551776be912680ec3f64f

Authored by Leonardo Merlin
1 parent 57652556

Fix #22

src/app/components/a11y-bar/a11y-bar.html
1   -<div class="a11y-bar hidden-xs">
  1 +<div class="a11y-bar">
2 2 <div class="container">
3 3 <div class="row">
4 4 <div class="col-sm-6">
... ... @@ -25,7 +25,7 @@
25 25 </div>
26 26  
27 27 <div class="col-sm-6">
28   - <ul class="action-links list-inline list-unstyled pull-right">
  28 + <ul class="action-links list-inline list-unstyled">
29 29 <li>
30 30 <a id="siteaction-accessibility" class="color-theme-common-fg" href="http://portalpadrao.gov.br/acessibilidade" target="_blank" title="Acessibilidade" accesskey="5">Acessibilidade</a>
31 31 </li>
... ...
src/app/components/a11y-bar/a11y-bar.scss
... ... @@ -14,5 +14,16 @@
14 14 .action-links {
15 15 text-transform: uppercase;
16 16 border-bottom: 1px dotted #262626;
  17 + float: right;
  18 +
  19 + @media screen and (max-width: $screen-sm) {
  20 + float: left;
  21 + // text-align: center;
  22 + }
  23 +
  24 + @media screen and (max-width: $screen-xs) {
  25 + float: none;
  26 + text-align: center;
  27 + }
17 28 }
18 29 }
... ...