Source code

Revision control

Copy as Markdown

Other Tools

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/**
* www.boots.com/opticiansappointments - form elements are not the same width
*
* They are using the non-standard -webkit-fill-available, but we can use the
* similar -moz-available to work around the issue.
*/
@media only screen and (max-width: 1224px) {
.Address input,
.RebookAddress input,
.Age select,
.AppointmentType select {
width: -moz-available;
}
}