mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-03 09:48:44 -04:00
For entering 2 or 3fa codes, we want a textbox that’s just over 6 characters wide. To do this, a width can now be passed to the textbox macro. The possible widths are the same as those provided by GOV.UK Elements, and in the same format (eg 1-4, 1-2, 2-3…) This commit also adds a new width (5em) which is suitable for 3fa codes, and adds it to the verify page.
41 lines
500 B
SCSS
41 lines
500 B
SCSS
// Extra CSS overlaying elements
|
|
|
|
#global-header-bar {
|
|
background-color: $red;
|
|
}
|
|
|
|
#global-header #logo {
|
|
white-space: nowrap;
|
|
font-size: 27px;
|
|
line-height: 32px;
|
|
|
|
img {
|
|
padding-right: 8px;
|
|
}
|
|
|
|
}
|
|
|
|
@include media(desktop) {
|
|
|
|
#proposition-menu {
|
|
float: right;
|
|
}
|
|
|
|
#global-header .header-proposition #proposition-links li {
|
|
padding: 0 0 0 15px;
|
|
}
|
|
|
|
}
|
|
|
|
a:visited {
|
|
color: $link-colour;
|
|
}
|
|
|
|
.form-control-5em {
|
|
width: 100%;
|
|
|
|
@include media(tablet) {
|
|
width: 5em;
|
|
}
|
|
}
|