86e885fc5b
- Move AuthDialog to use a Glimmer Component plus native named blocks/slots. - Unravel the Auth* contextual components, there wasn't a lot of point having them as contextual components and now the AuthDialog (non-view-specific state machine component) can be used entirely separately from the view-specific components (AuthForm and AuthProfile). - Move all the ACL related components that are in the main app chrome/navigation (our HashicorpConsul component) in our consul-acls sub package/module (which will eventually be loaded on demand only when ACLs are enabled)
20 lines
339 B
SCSS
20 lines
339 B
SCSS
.auth-profile {
|
|
padding: 0.9em 1em;
|
|
}
|
|
.auth-profile {
|
|
@extend %p2;
|
|
}
|
|
.auth-profile dt span {
|
|
font-weight: var(--typo-weight-normal);
|
|
}
|
|
.auth-profile dt {
|
|
font-weight: var(--typo-weight-bold);
|
|
}
|
|
.auth-profile dt,
|
|
.auth-profile dd {
|
|
color: rgb(var(--tone-gray-800));
|
|
}
|
|
.auth-profile dt span {
|
|
color: rgb(var(--tone-gray-600));
|
|
}
|