Skip to content

Commit 38e3ef3

Browse files
committed
Fix hover state on focused small radios
The comma is required to separate the two box shadows, but doesn’t have any effect as it is part of the comment. It like this was a regression introduced in a tidy-up as part of 9bc8c33. Move the comma to the right place to fix the hover state.
1 parent 25c2130 commit 38e3ef3

File tree

1 file changed

+1
-1
lines changed
  • packages/govuk-frontend/src/govuk/components/radios

1 file changed

+1
-1
lines changed

packages/govuk-frontend/src/govuk/components/radios/_index.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@
303303
}
304304
// prettier-ignore
305305
box-shadow:
306-
0 0 0 $govuk-radios-focus-width $govuk-focus-colour // 1,
306+
0 0 0 $govuk-radios-focus-width $govuk-focus-colour, // 1
307307
0 0 0 $govuk-hover-width $govuk-hover-colour; // 2
308308
}
309309

0 commit comments

Comments
 (0)