Commit be1cde90cdbfeca27a9551776be912680ec3f64f
1 parent
57652556
Exists in
master
and in
6 other branches
Fix #22
Showing
2 changed files
with
13 additions
and
2 deletions
Show diff stats
src/app/components/a11y-bar/a11y-bar.html
| 1 | -<div class="a11y-bar hidden-xs"> | 1 | +<div class="a11y-bar"> |
| 2 | <div class="container"> | 2 | <div class="container"> |
| 3 | <div class="row"> | 3 | <div class="row"> |
| 4 | <div class="col-sm-6"> | 4 | <div class="col-sm-6"> |
| @@ -25,7 +25,7 @@ | @@ -25,7 +25,7 @@ | ||
| 25 | </div> | 25 | </div> |
| 26 | 26 | ||
| 27 | <div class="col-sm-6"> | 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 | <li> | 29 | <li> |
| 30 | <a id="siteaction-accessibility" class="color-theme-common-fg" href="http://portalpadrao.gov.br/acessibilidade" target="_blank" title="Acessibilidade" accesskey="5">Acessibilidade</a> | 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 | </li> | 31 | </li> |
src/app/components/a11y-bar/a11y-bar.scss
| @@ -14,5 +14,16 @@ | @@ -14,5 +14,16 @@ | ||
| 14 | .action-links { | 14 | .action-links { |
| 15 | text-transform: uppercase; | 15 | text-transform: uppercase; |
| 16 | border-bottom: 1px dotted #262626; | 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 | } |