File tree Expand file tree Collapse file tree 7 files changed +9
-2
lines changed
Expand file tree Collapse file tree 7 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ module.exports = function(grunt) {
55 'build/css/website.css' : 'build/css/website.css' ,
66 'build/css/playground.css' : 'build/css/playground.css' ,
77 'build/css/homepage.css' : 'build/css/homepage.css' ,
8+ 'build/css/docs.css' : 'build/css/docs.css' ,
89 'build/css/large_flags_overrides.css' : 'build/css/large_flags_overrides.css'
910 }
1011 }
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ module.exports = function(grunt) {
1111 'build/css/website.css' : 'src/css/website.scss' ,
1212 'build/css/large_flags_overrides.css' : 'src/css/large_flags_overrides.scss' ,
1313 'build/css/playground.css' : 'src/css/playground.scss' ,
14+ 'build/css/docs.css' : 'src/css/docs.scss' ,
1415 'build/css/homepage.css' : 'src/css/homepage.scss' ,
1516 }
1617 } ,
Original file line number Diff line number Diff line change @@ -54,6 +54,7 @@ module.exports = function (grunt) {
5454 } ,
5555 website_css : makeCacheBustTask ( "build/css/website.css" ) ,
5656 homepage_css : makeCacheBustTask ( "build/css/homepage.css" ) ,
57+ docs_css : makeCacheBustTask ( "build/css/docs.css" ) ,
5758 playground_css : makeCacheBustTask ( "build/css/playground.css" ) ,
5859 large_flags_overrides_css : makeCacheBustTask ( "build/css/large_flags_overrides.css" ) ,
5960
Original file line number Diff line number Diff line change 8989// prevent layout shift when initialise components / show validation errors in demos
9090#app {
9191 min-height : 62px ;
92+ }
93+
94+ // in-article ads should have some margin
95+ .article-ad {
96+ margin : 20px 0 ;
9297}
Original file line number Diff line number Diff line change 1-
21/* Docs options page layout: keep code blocks within the content width */
32.iti-doc-options {
43 & __row {
Original file line number Diff line number Diff line change 77@use ' navbar' ;
88@use ' layout' ;
99@use ' forms' ;
10- @use ' docs' ;
1110@use ' darkmode' ;
1211@use ' highlightjs' ;
1312
Original file line number Diff line number Diff line change 1414 <link rel =" stylesheet" href =" /css/highlight-github-dark.min.css" media =" (prefers-color-scheme: dark)" >
1515
1616 <link rel =" stylesheet" href =" <%= cacheBust('/css/website.css') %>" />
17+ <link rel =" stylesheet" href =" <%= cacheBust('/css/docs.css') %>" />
1718
1819 <%= common_head_end %>
1920 </head >
You can’t perform that action at this time.
0 commit comments