diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index f30e64f..6872620 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -12,5 +12,4 @@ *= require preview *= require player *= require contributing - *= require banner */ diff --git a/app/assets/stylesheets/banner.sass b/app/assets/stylesheets/banner.sass deleted file mode 100644 index 4f43303..0000000 --- a/app/assets/stylesheets/banner.sass +++ /dev/null @@ -1,16 +0,0 @@ -.banner - padding: 10px - color: white - background-color: #333 - - p - margin: 0 - font-weight: bold - - .indie - background-image: url('https://ind.ie/static/build/images/site-header-balloon.svg') - background-repeat: no-repeat - background-size: 38px auto - background-position: 26px 0px - display: inline-block - width: 56px diff --git a/app/views/layouts/_banner.html.slim b/app/views/layouts/_banner.html.slim deleted file mode 100644 index 7cb0404..0000000 --- a/app/views/layouts/_banner.html.slim +++ /dev/null @@ -1,7 +0,0 @@ -.banner - .container - p - ' Be the hope. Help - a href="https://ind.ie/" class="indie" ind.ie - ' build independent technologies that protect your human rights. - a href="https://ind.ie/" Learn more. diff --git a/app/views/layouts/application.html.slim b/app/views/layouts/application.html.slim index 6ef50cd..25faca1 100644 --- a/app/views/layouts/application.html.slim +++ b/app/views/layouts/application.html.slim @@ -11,7 +11,6 @@ html[lang="en"] = favicon_link_tag 'favicon.png' = render 'layouts/ga' body - = render 'layouts/banner' = render 'layouts/header' = render 'shared/flash' .main = content_for?(:content) ? yield(:content) : yield