File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11.root {
22 position : relative;
3- top : 150px ;
43 z-index : 600 ;
54 width : 100% ;
65 padding-top : var (--margin );
2726.contactWrapper {
2827 flex-basis : var (--col2 );
2928 font-size : var (--text-small );
29+
3030 & p {
3131 margin-bottom : 0 ;
3232 font-size : inherit;
3333 }
34+
3435 & a {
3536 font-size : inherit;
3637 }
3940.socialmediaWrapper {
4041 flex-basis : var (--col6 );
4142
42- & > ul {
43+ & > ul {
4344 display : flex;
4445 font-size : inherit;
4546
8889 text-align : center;
8990 }
9091 }
91- }
92+ }
Original file line number Diff line number Diff line change 11.root {
22 width : 100% ;
3- position : fixed ;
3+ position : sticky ;
44 top : 0 ;
55 z-index : 800 ;
66 background-color : white;
1717 & : focus {
1818 color : var (--processing-blue-dark );
1919 }
20- }
20+ }
Original file line number Diff line number Diff line change 22 display : flex;
33 flex-direction : column;
44 height : 100% ;
5- min-height : 100 % ;
5+ min-height : 100 vh ;
66
77 & h2 {
88 scroll-margin-top : 150px ;
1414}
1515
1616.main {
17- top : 145px ;
1817 position : relative;
1918 flex : 1 ;
2019 padding-top : var (--vertical-margin-large );
2322
2423.withBreadcrumbs {
2524 padding-top : var (--vertical-margin-xsmall );
26- }
27-
28- @media (--reduced) {
29- .main {
30- top : 95px ;
31- }
32- }
25+ }
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ import { Helmet } from 'react-helmet';
33import { useIntl } from 'react-intl' ;
44
55import Layout from '../components/Layout' ;
6+ import * as css from '../styles/pages/404.module.css' ;
67
78const NotFoundPage = ( ) => {
89 const intl = useIntl ( ) ;
@@ -12,8 +13,10 @@ const NotFoundPage = () => {
1213 < Helmet >
1314 < title > { intl . formatMessage ( { id : 'pageNotFound' } ) } </ title >
1415 </ Helmet >
15- < h1 > { intl . formatMessage ( { id : 'notFound' } ) } </ h1 >
16- < p > { intl . formatMessage ( { id : 'notFoundText' } ) } </ p >
16+ < div className = { css . notfound } >
17+ < h1 > { intl . formatMessage ( { id : 'notFound' } ) } </ h1 >
18+ < p > { intl . formatMessage ( { id : 'notFoundText' } ) } </ p >
19+ </ div >
1720 </ Layout >
1821 ) ;
1922} ;
Original file line number Diff line number Diff line change 1+ .notfound {
2+ padding : var (--margin );
3+ }
You can’t perform that action at this time.
0 commit comments