Skip to content

Commit

Permalink
update form io styles (#1853)
Browse files Browse the repository at this point in the history
  • Loading branch information
djnunez-aot authored Jul 19, 2023
1 parent 5e3c5c7 commit 5443a27
Showing 1 changed file with 56 additions and 22 deletions.
78 changes: 56 additions & 22 deletions met-web/src/components/Form/formio.scss
Original file line number Diff line number Diff line change
Expand Up @@ -516,19 +516,35 @@ div[disabled] {
}

.BC-Gov-SecondaryButton {
background: none !important;
border-radius: 4px;
border: 2px solid #003366;
padding: 10px 30px;
text-align: center;
display: inline-flex;
-webkit-box-align: center;
align-items: center;
-webkit-box-pack: center;
justify-content: center;
position: relative;
box-sizing: border-box;
-webkit-tap-highlight-color: transparent;
outline: 0px;
margin: 0px;
cursor: pointer;
user-select: none;
vertical-align: middle;
appearance: none;
text-decoration: none;
display: block;
font-size: 18px;
font-family: ‘BCSans’, ‘Noto Sans’, Verdana, Arial, sans-serif;
font-weight: 700;
letter-spacing: 1px;
cursor: pointer;
color: #003366 !important;
font-size: 1.125rem;
text-transform: none;
font-family: BCSans, 'Noto Sans', Verdana, Arial, sans-serif;
min-width: 64px;
padding: 5px 15px;
height: 40px;
transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
color: rgb(0, 51, 102);
line-height: 1.1rem;
border: 2px solid rgb(0, 51, 102);
background-color: rgb(255, 255, 255);
border-radius: 4px;
}

.BC-Gov-SecondaryButton:hover {
Expand All @@ -539,19 +555,37 @@ div[disabled] {
}

.BC-Gov-PrimaryButton {
background-color: #003366 !important;
border: none;
border-radius: 4px;
color: white !important;
padding: 12px 32px;
text-align: center;
display: inline-flex;
-webkit-box-align: center;
align-items: center;
-webkit-box-pack: center;
justify-content: center;
position: relative;
box-sizing: border-box;
-webkit-tap-highlight-color: transparent;
outline: 0px;
border: 0px;
margin: 0px;
cursor: pointer;
user-select: none;
vertical-align: middle;
appearance: none;
text-decoration: none;
display: block;
font-size: 18px;
font-family: ‘BCSans’, ‘Noto Sans’, Verdana, Arial, sans-serif;
font-weight: 700;
letter-spacing: 1px;
cursor: pointer;
font-size: 1.125rem;
text-transform: none;
font-family: BCSans, 'Noto Sans', Verdana, Arial, sans-serif;
min-width: 64px;
padding: 6px 16px;
border-radius: 4px;
box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px,
rgba(0, 0, 0, 0.12) 0px 1px 5px 0px;
height: 40px;
transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
background-color: rgb(0, 51, 102);
color: rgb(255, 255, 255);
line-height: 1.1rem;
}

.BC-Gov-PrimaryButton:hover {
Expand Down

0 comments on commit 5443a27

Please sign in to comment.