mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-06 17:38:30 -04:00
Most GP practice services are named after the practice, which is the organisation. So rather than make people re-type the name of their organisation (and potentially make a typo) let’s just let them say ‘yes, that’s the name of my organisation’.
28 lines
476 B
SCSS
28 lines
476 B
SCSS
$border-thickness: 4px;
|
|
$top-spacing: $gutter - 5px;
|
|
|
|
.multiple-choice {
|
|
|
|
z-index: 10;
|
|
|
|
.block-label {
|
|
&:before {
|
|
box-shadow: 0 5px 0 0 $white;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
.conditional-radios {
|
|
|
|
&-panel {
|
|
border-left: $border-thickness solid $border-colour;
|
|
margin: 0 0 (-$gutter-half) ($gutter-half + ($border-thickness / 2));
|
|
padding: $gutter-half 0 0 ($gutter - ($border-thickness / 2));
|
|
position: relative;
|
|
top: -$top-spacing;
|
|
z-index: 1;
|
|
}
|
|
|
|
}
|