Skip to content

Commit

Permalink
Merge branch 'master' into EPMLABSBRN-960-update-dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Elena committed Jan 24, 2022
2 parents 729fd47 + 5876b80 commit 836b71e
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 4 deletions.
1 change: 1 addition & 0 deletions default.conf
Expand Up @@ -16,6 +16,7 @@ server {
text/css
application/json
application/x-javascript
application/javascript
text/xml
application/xml
application/xml+rss
Expand Down
1 change: 1 addition & 0 deletions default_with_tls.conf
Expand Up @@ -25,6 +25,7 @@ server {
text/plain
text/css
application/json
application/javascript
application/x-javascript
text/xml
application/xml
Expand Down
2 changes: 1 addition & 1 deletion frontend/app/components/login-form/template.hbs
Expand Up @@ -2,7 +2,7 @@
class="rounded-xl px-16 pt-16 pb-16 pr-16 mb-6 bg-white shadow-lg"
{{on "submit" this.onSubmit}}
>
<div class="relative z-10 w-64 bg-white rounded-lg">
<div class="relative z-10 bg-white rounded-lg">
{{#if this.loginInProgress}}
<LoadingSpinner />
{{else}}
Expand Down
6 changes: 5 additions & 1 deletion frontend/app/templates/application.hbs
Expand Up @@ -2,9 +2,13 @@
<Header />
<main
class="{{if
(or (not (is-active "index")))
(not (is-active "index"))
"flex-col mx-auto mt-2 sm:mt-4 rounded pl-1 pr-1 pt-1 pb-1 relative"
}}"
{{! template-lint-disable no-inline-styles }}
{{! template-lint-disable style-concatenation }}
style="
{{if (not (is-active "index")) "width: 80vw; max-width: 1280px;"}}"
>
{{outlet}}
</main>
Expand Down
8 changes: 7 additions & 1 deletion frontend/app/templates/group.hbs
Expand Up @@ -13,12 +13,18 @@
}}
<aside
class="bg-gradient-to-b from-white sticky top-0 rounded-bl rounded-br"
{{! template-lint-disable no-inline-styles }}
style="max-width: 80vw;"
>
<GroupNavigation @group={{@model}} />
</aside>
{{/if}}
{{#if (is-active "group.series.subgroup.index")}}
<aside class="bg-gradient-to-b from-white rounded-bl rounded-br">
<aside
class="bg-gradient-to-b from-white rounded-bl rounded-br"
{{! template-lint-disable no-inline-styles }}
style="max-width: 80vw;"
>
<SubgroupNavigation @group={{model-for-route "group.series"}} />
</aside>
{{/if}}
Expand Down
1 change: 0 additions & 1 deletion frontend/app/templates/group/series-loading.hbs

This file was deleted.

0 comments on commit 836b71e

Please sign in to comment.