mirror of
https://github.com/status-im/consul.git
synced 2025-02-21 09:58:26 +00:00
* Update list items to be linkable to auth-methods show * Add general, namespace, and binding sub-routes * Remove namespace and binding tabs to be done separately * Update auth-method byId endpoint * Style the show auth-method kubernetes type * Finish Kubernetes auth-method type styling * OIDC and JWT auth-method styling * Create consul-auth-method-view component * Add navigation test for auth-methods * Create Certificate component
27 lines
533 B
SCSS
27 lines
533 B
SCSS
.certificate {
|
|
display: flex;
|
|
button.visibility {
|
|
height: fit-content;
|
|
padding-top: 4px;
|
|
margin-right: 4px;
|
|
cursor: pointer;
|
|
}
|
|
button.hide::before {
|
|
@extend %with-visibility-hide-icon, %as-pseudo;
|
|
}
|
|
button.show::before {
|
|
@extend %with-visibility-show-icon, %as-pseudo;
|
|
}
|
|
div.key {
|
|
background-color: var(--gray-050);
|
|
overflow-wrap: anywhere;
|
|
}
|
|
hr {
|
|
border: 3px dashed var(--gray-300);
|
|
background-color: $white;
|
|
width: 150px;
|
|
margin: auto;
|
|
margin-top: 9px;
|
|
}
|
|
}
|