Files
notifications-admin/app/assets/stylesheets/components/conditional-radios.scss
T

28 lines
476 B
SCSS
Raw Normal View History

$border-thickness: 4px;
$top-spacing: $gutter - 5px;
2018-06-12 14:29:47 +01:00
.multiple-choice {
z-index: 10;
.block-label {
&:before {
box-shadow: 0 5px 0 0 $white;
2018-06-12 14:29:47 +01:00
}
}
}
.conditional-radios {
&-panel {
border-left: $border-thickness solid $border-colour;
2019-09-05 12:10:24 +01:00
margin: 0 0 (-$gutter-half) ($gutter-half + ($border-thickness / 2));
padding: $gutter-half 0 0 ($gutter - ($border-thickness / 2));
2018-06-12 14:29:47 +01:00
position: relative;
top: -$top-spacing;
2018-06-12 14:29:47 +01:00
z-index: 1;
}
}