diff --git a/app/assets/stylesheets/debates.scss b/app/assets/stylesheets/debates.scss index 5b8bc029f..043cfe4f6 100644 --- a/app/assets/stylesheets/debates.scss +++ b/app/assets/stylesheets/debates.scss @@ -240,6 +240,14 @@ a { color: $text; } + + ul, ol { + + li { + font-size: rem-calc(13); + margin-bottom: rem-calc(12); + } + } } .truncate { @@ -433,6 +441,14 @@ } } + ul, ol { + + li { + font-size: rem-calc(13); + margin-bottom: rem-calc(12); + } + } + .author-photo { line-height: $line-height*2; margin-right: rem-calc(6); diff --git a/app/assets/stylesheets/participacion.scss b/app/assets/stylesheets/participacion.scss index 8325df00f..43d040ecb 100644 --- a/app/assets/stylesheets/participacion.scss +++ b/app/assets/stylesheets/participacion.scss @@ -280,7 +280,7 @@ header { min-height: rem-calc(48); @media (min-width: $small-breakpoint) { - min-height: rem-calc(189); + min-height: 189px; } } @@ -901,12 +901,6 @@ form { } } -.alert-layout { - position: absolute; - top: 0; - width: 100%; -} - span.error, small.error { background: $alert-bg; color: $alert-color; @@ -923,6 +917,11 @@ label.error, label.error a { color: $alert-color; } +.alert-messages { + background-color: white; + padding-top: rem-calc(24); +} + // 10. User account // - - - - - - - - - - - - - - - - - - - - - - - - - @@ -1351,7 +1350,7 @@ table { // - - - - - - - - - - - - - - - - - - - - - - - - - .verification { - min-height: 60%; + min-height: rem-calc(600); @media (min-width: $small-breakpoint) { .left + .left { diff --git a/app/views/account/show.html.erb b/app/views/account/show.html.erb index 1d7ecaf7e..5fe455a6f 100644 --- a/app/views/account/show.html.erb +++ b/app/views/account/show.html.erb @@ -2,7 +2,7 @@
diff --git a/app/views/debates/_form.html.erb b/app/views/debates/_form.html.erb index 313ec29a3..e9d750c8a 100644 --- a/app/views/debates/_form.html.erb +++ b/app/views/debates/_form.html.erb @@ -20,16 +20,18 @@ <%= tag.name %> <% end %>
- <%= f.text_field :tag_list, value: @debate.tag_list.to_s, label: false %> + <%= f.text_field :tag_list, value: @debate.tag_list.to_s, label: false, placeholder: t("debates.form.tags_placeholder") %>