Skip to content

Commit

Permalink
Merge pull request #38 from synapsestudios/copy-styles-my-bad
Browse files Browse the repository at this point in the history
Made some minor style changes in oidc-connect layout that I want in d…
  • Loading branch information
spruce-bruce authored Mar 16, 2017
2 parents 3a9c235 + 3471032 commit 61f6c76
Showing 1 changed file with 30 additions and 3 deletions.
33 changes: 30 additions & 3 deletions api/templates/layout/default.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -177,11 +177,22 @@
}
/* Form inputs and scaffolding */
.input-scaffold {
.input-scaffold,
.toggle-scaffold {
position: relative;
display: block;
width: 100%;
padding: 16px;
padding: 12px 16px;
}
.input-scaffold label,
.toggle-scaffold label {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: flex-start;
align-items: center;
width: 100%;
}
.input-scaffold__label {
Expand All @@ -192,6 +203,11 @@
margin-bottom: 6px;
}
.toggle-scaffold__label {
font-size: 16px;
font-weight: bold;
}
.input-scaffold__input {
display: block;
width: 100%;
Expand All @@ -205,6 +221,10 @@
appearance: none;
}
.toggle-scaffold__input {
margin-right: 8px;
}
.input-scaffold__validation {
margin-top: 8px;
}
Expand All @@ -219,13 +239,20 @@
}
/* Alerts */
.alerts {
margin: 8px;
}
.alert {
width: 100%;
height: auto;
padding: 16px;
font-weight: bold;
border-radius: 4px;
margin-bottom: 16px;
}
.alert + .alert {
margin-top: 8px;
}
.alert--error {
Expand Down

0 comments on commit 61f6c76

Please sign in to comment.