-
Notifications
You must be signed in to change notification settings - Fork 324
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2376 from alphagov/support-release-3.14.0
Release 3.14.0
- Loading branch information
Showing
9 changed files
with
60 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.13.1 | ||
3.14.0 |
2 changes: 1 addition & 1 deletion
2
dist/govuk-frontend-3.13.1.min.css → dist/govuk-frontend-3.14.0.min.css
Large diffs are not rendered by default.
Oops, something went wrong.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
dist/govuk-frontend-ie8-3.13.1.min.css → dist/govuk-frontend-ie8-3.14.0.min.css
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
@import "display"; | ||
@import "spacing"; | ||
@import "text-align"; | ||
@import "typography"; | ||
@import "width"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
@if not mixin-exists("govuk-exports") { | ||
@warn "Importing items from the overrides layer without first importing `base` is deprecated, and will no longer work as of GOV.UK Frontend v4.0."; | ||
} | ||
|
||
@import "../base"; | ||
|
||
// stylelint-disable declaration-no-important | ||
@include govuk-exports("govuk/overrides/text-align") { | ||
.govuk-\!-text-align-left { | ||
text-align: left !important; | ||
} | ||
|
||
.govuk-\!-text-align-centre { | ||
text-align: center !important; | ||
} | ||
|
||
.govuk-\!-text-align-right { | ||
text-align: right !important; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters