Skip to content

Commit f7811c1

Browse files
committed
Fix order of @import
In CSS 2.1, any @import rules must precede all other rules (except the @charset rule, if present).
1 parent 8de97dd commit f7811c1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/librustdoc/html/static/rustdoc.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
@import "normalize.css";
2+
13
/**
24
* Copyright 2013 The Rust Project Developers. See the COPYRIGHT
35
* file at the top-level directory of this distribution and at
@@ -59,8 +61,6 @@
5961
src: local('Source Code Pro Semibold'), url("SourceCodePro-Semibold.woff") format('woff');
6062
}
6163

62-
@import "normalize.css";
63-
6464
* {
6565
-webkit-box-sizing: border-box;
6666
-moz-box-sizing: border-box;

0 commit comments

Comments
 (0)