ui, fix: Resolve issue on the displaying of groups

This commit is contained in:
Gaëlle Morin 2019-03-25 17:50:45 +01:00
parent 05d71de379
commit 2025a07794
5 changed files with 8 additions and 3 deletions

View File

@ -5,7 +5,7 @@
script( script(
type="module" type="module"
src="https://unpkg.com/@startinblox/oidc@0.5" src="https://unpkg.com/@startinblox/oidc@0.6"
data-authority=`${sdn}/openid/`, data-authority=`${sdn}/openid/`,
data-client_id=`${client_id}`, data-client_id=`${client_id}`,
data-response_type='id_token token', data-response_type='id_token token',

View File

@ -45,7 +45,7 @@
sib-multiple[name$='groups'] { sib-multiple[name$='groups'] {
display: flex; display: flex;
li { > * {
@extend %group; @extend %group;
} }
} }

View File

@ -65,7 +65,7 @@
display: flex; display: flex;
padding-left: 1.4rem; padding-left: 1.4rem;
li { groups-name {
@extend %group; @extend %group;
} }
} }

View File

@ -166,6 +166,10 @@
sib-multiple[name$='groups'] { sib-multiple[name$='groups'] {
display: flex; display: flex;
> * {
margin-right: 0.4rem;
}
} }
} }
} }

View File

@ -54,6 +54,7 @@ $color-majorelle-blue: hsl(244, 73%, 62%);
color: $color-rolling-stone; color: $color-rolling-stone;
font-size: 1.4rem; font-size: 1.4rem;
font-weight: 400; font-weight: 400;
margin-right: 0.4rem;
padding: calc(1.6rem - 0.8em) 0.7em; padding: calc(1.6rem - 0.8em) 0.7em;
} }