diff --git a/app/assets/stylesheets/components/browse-list.scss b/app/assets/stylesheets/components/browse-list.scss index 26781ad65..14f7b59f8 100644 --- a/app/assets/stylesheets/components/browse-list.scss +++ b/app/assets/stylesheets/components/browse-list.scss @@ -1,18 +1,24 @@ .browse-list { + margin-bottom: $gutter-half; - margin-bottom: $gutter; + .browse-sub-list { + margin-top: $gutter-half; + margin-left: $gutter; + @include media('desktop') { + margin-left: $gutter * 2; + } + } - &-item { + &-item, + &-sub-item { list-style: none; - margin-bottom: $gutter-two-thirds; + margin-bottom: $gutter-half; } &-link { - @include bold-24; &-destructive { - @include bold-24; color: $error-colour; @@ -25,14 +31,11 @@ &:hover { color: $mellow-red; } - } - } &-hint { @include core-19; margin-top: 5px; } - } diff --git a/app/templates/views/choose-account.html b/app/templates/views/choose-account.html index 6fd63733e..e4f812935 100644 --- a/app/templates/views/choose-account.html +++ b/app/templates/views/choose-account.html @@ -9,45 +9,33 @@

Choose account

- - {% for org in organisations %} -
 
-
- -
- {% endfor %} - {% if services_without_organisations %} -
 
- - {% endif %} +
+ {% endif %} {% if can_add_service %} -
 
- + Add a new service… {% endif %} {% endblock %}