+
@@ -18,6 +28,24 @@ export default {};
border-radius: var(--border-radius);
flex-grow: 1;
flex-basis: 0;
+ position:relative;
+
+ .stepped {
+ padding-left: 40px;
+ }
+
+ .step-number {
+ border-radius: 50%;
+ background: var(--primary);
+ width: 1.5em;
+ height: 1.5em;
+ line-height: 1.5em;
+ text-align: center;
+ position: absolute;
+ top: 20px;
+ left: -.75em;
+ color: var(--primary-text)
+ }
.info-column:not(:last-child) {
border-right: 1px solid var(--tabbed-border);
diff --git a/edit/auth/github.vue b/edit/auth/github.vue
index 3471cd9841..e0577e3ceb 100644
--- a/edit/auth/github.vue
+++ b/edit/auth/github.vue
@@ -2,7 +2,6 @@
import Loading from '@/components/Loading';
import CreateEditView from '@/mixins/create-edit-view';
import CruResource from '@/components/CruResource';
-import InfoBox from '@/components/InfoBox';
import RadioGroup from '@/components/form/RadioGroup';
import LabeledInput from '@/components/form/LabeledInput';
import Banner from '@/components/Banner';
@@ -12,6 +11,7 @@ import { NORMAN, MANAGEMENT } from '@/config/types';
import { findBy } from '@/utils/array';
import AuthConfig from '@/mixins/auth-config';
import AuthBanner from '@/components/auth/AuthBanner';
+import InfoBox from '@/components/InfoBox';
const NAME = 'github';
@@ -19,13 +19,13 @@ export default {
components: {
Loading,
CruResource,
- InfoBox,
RadioGroup,
LabeledInput,
Banner,
CopyToClipboard,
AllowedPrincipals,
- AuthBanner
+ AuthBanner,
+ InfoBox
},
mixins: [CreateEditView, AuthConfig],
@@ -184,9 +184,15 @@ export default {
-