Sha256: ab6b81039c1eaecdc8dea2355d752c6cbf6e297405fdfdc16a878ee06ff5342c
Contents?: true
Size: 1.21 KB
Versions: 55
Compression:
Stored size: 1.21 KB
Contents
@use "../utils/typography" as *; @function govuk-definition($size) { @return ( null: ( font-size: font-size($size, mobile, px), line-height: line-height($size, mobile, px), ), tablet: ( font-size: font-size($size, tablet, px), line-height: line-height($size, tablet, px), ), print: ( font-size: font-size($size, print, px), line-height: line-height($size, print, px), ) ); } $govuk-font-family: "Inter"; $govuk-text-colour: #{var(--site-text-color)}; $govuk-typography-scale: ( 80: govuk-definition(h1), 48: govuk-definition(h2), 36: govuk-definition(h3), 27: govuk-definition(h4), 24: govuk-definition(h5), 19: govuk-definition(h6), 16: govuk-definition(paragraph), 14: govuk-definition(small), ); $govuk-input-border-colour: #{var(--site-text-color)}; @import "katalyst/govuk/formbuilder"; .govuk-input, .govuk-textarea { color: $govuk-text-colour; } .govuk-hint { max-width: var(--text-width); } // in the context of Koi admin forms, hang the error border in the gutter // not a generally applicable style .govuk-form-group--error:not(.govuk-form-group .govuk-form-group--error) { position: relative; margin-left: -18px; padding-left: 13px; }
Version data entries
55 entries across 55 versions & 1 rubygems