diff --git a/app/assets/images/auth_logo.png b/app/assets/images/auth_logo.png
new file mode 100644
index 000000000..bc7b1408b
Binary files /dev/null and b/app/assets/images/auth_logo.png differ
diff --git a/app/assets/stylesheets/participacion.scss b/app/assets/stylesheets/participacion.scss
index b38db6d0f..73176293c 100644
--- a/app/assets/stylesheets/participacion.scss
+++ b/app/assets/stylesheets/participacion.scss
@@ -51,6 +51,7 @@
@media (min-width: $small-breakpoint) {
font-size: rem-calc(28);
+
span {
font-size: rem-calc(20);
}
@@ -405,8 +406,15 @@ header {
background: none;
}
- .toggle-topbar a {
- font-size: rem-calc(10);
+ .toggle-topbar {
+
+ a {
+ font-size: rem-calc(10);
+ }
+
+ &.menu-icon a {
+ padding: 0 rem-calc(24);
+ }
}
&.expanded .toggle-topbar a {
@@ -643,7 +651,7 @@ footer {
.tags {
a {
- background: #f2f2f2;
+ background: $border;
border-radius: rem-calc(30);
color: #4d4d4d;
display: inline-block;
@@ -705,6 +713,14 @@ footer {
h1 {
@include logo;
+
+ a {
+ line-height: $line-height;
+
+ span {
+ vertical-align: middle;
+ }
+ }
}
}
@@ -1202,6 +1218,7 @@ table {
.page {
background: white;
+ min-height: rem-calc(480);
padding-bottom: rem-calc(48);
.menu {
@@ -1260,6 +1277,7 @@ table {
padding-bottom: rem-calc(12);
padding-left: rem-calc(36);
position: relative;
+ text-align: left;
span {
color: $text-medium;
@@ -1277,12 +1295,16 @@ table {
}
&:after {
- content: 'c';
+ content: none;
color: $text-light;
font-family: "icons" !important;
position: absolute;
right: 0;
top: rem-calc(6);
+
+ @media (min-width: $small-breakpoint) {
+ content: 'c';
+ }
}
}
}
diff --git a/app/views/debates/_form.html.erb b/app/views/debates/_form.html.erb
index 334c444cf..313ec29a3 100644
--- a/app/views/debates/_form.html.erb
+++ b/app/views/debates/_form.html.erb
@@ -25,7 +25,12 @@
<% if @debate.new_record? %>
- <%= f.check_box :terms_of_service, label: t("form.accept_terms") %>
+ <%= f.label :terms_of_service do %>
+ <%= f.check_box :terms_of_service, label: false %>
+ <%= t("form.accept_terms",
+ policy: link_to(t("form.policy"), "/privacy", target: "blank"), conditions: link_to(t("form.conditions"), "/conditions", target: "blank")).html_safe
+ %>
+ <% end %>
<% end %>
@@ -38,3 +43,5 @@
<% end %>
+
+
diff --git a/app/views/layouts/_admin_header.html.erb b/app/views/layouts/_admin_header.html.erb
index fdc1d6c6e..a39906aa7 100644
--- a/app/views/layouts/_admin_header.html.erb
+++ b/app/views/layouts/_admin_header.html.erb
@@ -14,7 +14,7 @@
<%= t("layouts.header.open_gov", open: "#{t('layouts.header.open')}").html_safe %> | <%= t("admin.dashboard.index.title") %>
<% end %>
-
+
diff --git a/app/views/layouts/_header.html.erb b/app/views/layouts/_header.html.erb
index a51442aa9..afa816222 100644
--- a/app/views/layouts/_header.html.erb
+++ b/app/views/layouts/_header.html.erb
@@ -13,7 +13,7 @@